From ef2eaca00094d2966157e400b4ff6905e451f8db Mon Sep 17 00:00:00 2001 From: Jacky Bai Date: Fri, 15 Mar 2019 12:44:37 +0800 Subject: [PATCH] MLK-21153 driver: tty: Fix resume dump caused by uart clock Fix the uart clock disable mismatch when doing system suspend & resume. Signed-off-by: Jacky Bai --- drivers/tty/serial/imx.c | 2 -- 1 file changed, 2 deletions(-) diff --git a/drivers/tty/serial/imx.c b/drivers/tty/serial/imx.c index 2e58f19d52d4..aa3a43999e17 100644 --- a/drivers/tty/serial/imx.c +++ b/drivers/tty/serial/imx.c @@ -2560,8 +2560,6 @@ static int imx_uart_resume_noirq(struct device *dev) /* disable wakeup from i.MX UART */ imx_uart_enable_wakeup(sport, false); - clk_disable(sport->clk_ipg); - return 0; } -- 2.17.1