Commit 63fd4b94 authored by Stefan Agner's avatar Stefan Agner Committed by Greg Kroah-Hartman

serial: imx: fix error handling in console_setup

The ipg clock only needs to be unprepared in case preparing
per clock fails. The ipg clock has already disabled at the point.

Fixes: 1cf93e0d ("serial: imx: remove the uart_console() check")
Signed-off-by: default avatarStefan Agner <stefan@agner.ch>
Reviewed-by: default avatarUwe Kleine-König <u.kleine-koenig@pengutronix.de>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 35d7a58a
...@@ -2064,7 +2064,7 @@ imx_uart_console_setup(struct console *co, char *options) ...@@ -2064,7 +2064,7 @@ imx_uart_console_setup(struct console *co, char *options)
retval = clk_prepare(sport->clk_per); retval = clk_prepare(sport->clk_per);
if (retval) if (retval)
clk_disable_unprepare(sport->clk_ipg); clk_unprepare(sport->clk_ipg);
error_console: error_console:
return retval; return retval;
......
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