Commit 8b505ca8 authored by Thiago Farina's avatar Thiago Farina Committed by Greg Kroah-Hartman

serial: 68328serial.c: remove BAUD_TABLE_SIZE macro

This macro is a duplicate of ARRAY_SIZE defined in kernel api, so just use
that instead.
Signed-off-by: default avatarThiago Farina <tfransosi@gmail.com>
Cc: Alan Cox <alan@lxorguk.ukuu.org.uk>
Signed-off-by: default avatarAndrew Morton <akpm@linux-foundation.org>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@suse.de>
parent b5d228cc
...@@ -153,8 +153,6 @@ static int baud_table[] = { ...@@ -153,8 +153,6 @@ static int baud_table[] = {
0, 50, 75, 110, 134, 150, 200, 300, 600, 1200, 1800, 2400, 4800, 0, 50, 75, 110, 134, 150, 200, 300, 600, 1200, 1800, 2400, 4800,
9600, 19200, 38400, 57600, 115200, 0 }; 9600, 19200, 38400, 57600, 115200, 0 };
#define BAUD_TABLE_SIZE (sizeof(baud_table)/sizeof(baud_table[0]))
/* Sets or clears DTR/RTS on the requested line */ /* Sets or clears DTR/RTS on the requested line */
static inline void m68k_rtsdtr(struct m68k_serial *ss, int set) static inline void m68k_rtsdtr(struct m68k_serial *ss, int set)
{ {
...@@ -1406,10 +1404,10 @@ static void m68328_set_baud(void) ...@@ -1406,10 +1404,10 @@ static void m68328_set_baud(void)
USTCNT = ustcnt & ~USTCNT_TXEN; USTCNT = ustcnt & ~USTCNT_TXEN;
again: again:
for (i = 0; i < sizeof(baud_table) / sizeof(baud_table[0]); i++) for (i = 0; i < ARRAY_SIZE(baud_table); i++)
if (baud_table[i] == m68328_console_baud) if (baud_table[i] == m68328_console_baud)
break; break;
if (i >= sizeof(baud_table) / sizeof(baud_table[0])) { if (i >= ARRAY_SIZE(baud_table)) {
m68328_console_baud = 9600; m68328_console_baud = 9600;
goto again; goto again;
} }
...@@ -1435,7 +1433,7 @@ int m68328_console_setup(struct console *cp, char *arg) ...@@ -1435,7 +1433,7 @@ int m68328_console_setup(struct console *cp, char *arg)
if (arg) if (arg)
n = simple_strtoul(arg,NULL,0); n = simple_strtoul(arg,NULL,0);
for (i = 0; i < BAUD_TABLE_SIZE; i++) for (i = 0; i < ARRAY_SIZE(baud_table); i++)
if (baud_table[i] == n) if (baud_table[i] == n)
break; break;
if (i < BAUD_TABLE_SIZE) { if (i < BAUD_TABLE_SIZE) {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment