Omap3_can_sleep is not inside part of idle loop which is protected with irg disable. If some irq handler is trying dump out something after omap3_can_sleep and before irqs are disabled. It causes oops because uart clocks are disabled. Remove also some unused extra code from omap_uart_can_sleep Signed-off-by: Jouni Hogander <jouni.hogander@xxxxxxxxx> --- arch/arm/mach-omap2/serial.c | 11 +---------- 1 files changed, 1 insertions(+), 10 deletions(-) diff --git a/arch/arm/mach-omap2/serial.c b/arch/arm/mach-omap2/serial.c index ef30d8d..b06b797 100644 --- a/arch/arm/mach-omap2/serial.c +++ b/arch/arm/mach-omap2/serial.c @@ -314,21 +314,13 @@ void omap_uart_check_wakeup(void) int omap_uart_can_sleep(void) { struct omap_uart_state *uart; - int can_sleep = 1; list_for_each_entry(uart, &uart_list, node) { - if (!uart->clocked) + if (!uart->clocked || !uart->can_sleep) continue; - if (!uart->can_sleep) { - can_sleep = 0; - continue; - } - /* This UART can now safely sleep. */ omap_uart_allow_sleep(uart); - if (clocks_off_while_idle) - omap_uart_disable_clocks(uart); } return 1; @@ -435,7 +427,6 @@ static void omap_uart_pm(struct uart_port *port, break; case 3: /* suspend */ omap_uart_allow_sleep(uart); - omap_uart_disable_clocks(uart); break; } } -- 1.6.0.1 -- To unsubscribe from this list: send the line "unsubscribe linux-omap" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html