diff --git a/[refs] b/[refs] index 2909a2d472d3..f1bca6484b56 100644 --- a/[refs] +++ b/[refs] @@ -1,2 +1,2 @@ --- -refs/heads/master: 91d60417212fa6b100107384c5e4f5663ab69c8f +refs/heads/master: 9fcce0baea6628af935b1b485d6606a5a377a052 diff --git a/trunk/drivers/serial/68328serial.c b/trunk/drivers/serial/68328serial.c index 78ed24bb6a35..30463862603b 100644 --- a/trunk/drivers/serial/68328serial.c +++ b/trunk/drivers/serial/68328serial.c @@ -1437,7 +1437,7 @@ int m68328_console_setup(struct console *cp, char *arg) for (i = 0; i < ARRAY_SIZE(baud_table); i++) if (baud_table[i] == n) break; - if (i < BAUD_TABLE_SIZE) { + if (i < ARRAY_SIZE(baud_table)) { m68328_console_baud = n; m68328_console_cbaud = 0; if (i > 15) {