[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <483998EC.5080805@gmail.com>
Date: Sun, 25 May 2008 18:50:52 +0200
From: Jiri Slaby <jirislaby@...il.com>
To: "Robert P. J. Day" <rpjday@...shcourse.ca>
CC: Linux Kernel Mailing List <linux-kernel@...r.kernel.org>,
Andrew Morton <akpm@...l.org>
Subject: Re: [PATCH] SERIAL: Simplify code using ARRAY_SIZE() macro.
On 05/25/2008 01:37 PM, Robert P. J. Day wrote:
> Signed-off-by: Robert P. J. Day <rpjday@...shcourse.ca>
>
> ---
>
> drivers/serial/68328serial.c | 6 +++---
> drivers/serial/mcfserial.c | 5 ++---
> 2 files changed, 5 insertions(+), 6 deletions(-)
>
> diff --git a/drivers/serial/68328serial.c b/drivers/serial/68328serial.c
> index bbf5bc5..71c56c1 100644
> --- a/drivers/serial/68328serial.c
> +++ b/drivers/serial/68328serial.c
[...]
> @@ -1413,10 +1413,10 @@ static void m68328_set_baud(void)
> USTCNT = ustcnt & ~USTCNT_TXEN;
>
> again:
> - for (i = 0; i < sizeof(baud_table) / sizeof(baud_table[0]); i++)
> + for (i = 0; i < BAUD_TABLE_SIZE); i++)
typo? does this compile?
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists