.. | .. |
---|
50 | 50 | int pos = 0; |
---|
51 | 51 | int port = 0; |
---|
52 | 52 | |
---|
53 | | - if (cmdline_find_option("earlyprintk", arg, sizeof arg) > 0) { |
---|
| 53 | + if (cmdline_find_option("earlyprintk", arg, sizeof(arg)) > 0) { |
---|
54 | 54 | char *e; |
---|
55 | 55 | |
---|
56 | 56 | if (!strncmp(arg, "serial", 6)) { |
---|
.. | .. |
---|
124 | 124 | * console=uart8250,io,0x3f8,115200n8 |
---|
125 | 125 | * need to make sure it is last one console ! |
---|
126 | 126 | */ |
---|
127 | | - if (cmdline_find_option("console", optstr, sizeof optstr) <= 0) |
---|
| 127 | + if (cmdline_find_option("console", optstr, sizeof(optstr)) <= 0) |
---|
128 | 128 | return; |
---|
129 | 129 | |
---|
130 | 130 | options = optstr; |
---|