This is a note to let you know that I've just added the patch titled
ARM: LPC32xx: serial.c: Fixed loop limit
to the 3.0-stable tree which can be found at:
http://www.kernel.org/git/?p=linux/kernel/git/stable/stable-queue.git;a=summary
The filename of the patch is:
arm-lpc32xx-serial.c-fixed-loop-limit.patch
and it can be found in the queue-3.0 subdirectory.
If you, or anyone else, feels it should not be added to the stable tree,
please let <[email protected]> know about it.
>From ff424aa4c89d19082e8ae5a3351006bc8a4cd91b Mon Sep 17 00:00:00 2001
From: Roland Stigge <[email protected]>
Date: Mon, 27 Feb 2012 17:28:03 +0100
Subject: ARM: LPC32xx: serial.c: Fixed loop limit
From: Roland Stigge <[email protected]>
commit ff424aa4c89d19082e8ae5a3351006bc8a4cd91b upstream.
This patch fixes a wrong loop limit on UART init.
Signed-off-by: Roland Stigge <[email protected]>
Signed-off-by: Greg Kroah-Hartman <[email protected]>
---
arch/arm/mach-lpc32xx/serial.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
--- a/arch/arm/mach-lpc32xx/serial.c
+++ b/arch/arm/mach-lpc32xx/serial.c
@@ -187,7 +187,7 @@ void __init lpc32xx_serial_init(void)
/* This needs to be done after all UART clocks are setup */
__raw_writel(clkmodes, LPC32XX_UARTCTL_CLKMODE);
- for (i = 0; i < ARRAY_SIZE(uartinit_data) - 1; i++) {
+ for (i = 0; i < ARRAY_SIZE(uartinit_data); i++) {
/* Force a flush of the RX FIFOs to work around a HW bug */
puart = serial_std_platform_data[i].mapbase;
__raw_writel(0xC1, LPC32XX_UART_IIR_FCR(puart));
Patches currently in stable-queue which might be from [email protected] are
queue-3.0/arm-lpc32xx-serial.c-hw-bug-workaround.patch
queue-3.0/arm-lpc32xx-fix-interrupt-controller-init.patch
queue-3.0/arm-lpc32xx-irq.c-clear-latched-event.patch
queue-3.0/arm-lpc32xx-fix-irq-on-gpi_28.patch
queue-3.0/arm-lpc32xx-serial.c-fixed-loop-limit.patch
--
To unsubscribe from this list: send the line "unsubscribe stable" in
the body of a message to [email protected]
More majordomo info at http://vger.kernel.org/majordomo-info.html