Browse Source

serial: MIPS: lantiq: add clk_enable() call to driver

Enable the clock if one is present when setting up the console.

Signed-off-by: Thomas Langer <thomas.langer@lantiq.com>
Acked-by: John Crispin <blogic@openwrt.org>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Thomas Langer 12 years ago
parent
commit
7c658e6b46
1 changed files with 3 additions and 0 deletions
  1. 3 0
      drivers/tty/serial/lantiq.c

+ 3 - 0
drivers/tty/serial/lantiq.c

@@ -636,6 +636,9 @@ lqasc_console_setup(struct console *co, char *options)
 
 	port = &ltq_port->port;
 
+	if (!IS_ERR(ltq_port->clk))
+		clk_enable(ltq_port->clk);
+
 	port->uartclk = clk_get_rate(ltq_port->fpiclk);
 
 	if (options)