Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 269436
b: refs/heads/master
c: 36b8f1e
h: refs/heads/master
v: v3
  • Loading branch information
Russell King committed Sep 27, 2011
1 parent 8c6b78d commit 3edd09e
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 2 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 99df4ee107a85530f3d4f6d628c8a86db9b1a8b3
refs/heads/master: 36b8f1e2dc8d0da4571788053af70f1f45d96ecf
14 changes: 13 additions & 1 deletion trunk/drivers/tty/serial/amba-pl010.c
Original file line number Diff line number Diff line change
Expand Up @@ -312,12 +312,16 @@ static int pl010_startup(struct uart_port *port)
struct uart_amba_port *uap = (struct uart_amba_port *)port;
int retval;

retval = clk_prepare(uap->clk);
if (retval)
goto out;

/*
* Try to enable the clock producer.
*/
retval = clk_enable(uap->clk);
if (retval)
goto out;
goto clk_unprep;

uap->port.uartclk = clk_get_rate(uap->clk);

Expand All @@ -343,6 +347,8 @@ static int pl010_startup(struct uart_port *port)

clk_dis:
clk_disable(uap->clk);
clk_unprep:
clk_unprepare(uap->clk);
out:
return retval;
}
Expand Down Expand Up @@ -370,6 +376,7 @@ static void pl010_shutdown(struct uart_port *port)
* Shut down the clock producer
*/
clk_disable(uap->clk);
clk_unprepare(uap->clk);
}

static void
Expand Down Expand Up @@ -626,6 +633,7 @@ static int __init pl010_console_setup(struct console *co, char *options)
int bits = 8;
int parity = 'n';
int flow = 'n';
int ret;

/*
* Check whether an invalid uart number has been specified, and
Expand All @@ -638,6 +646,10 @@ static int __init pl010_console_setup(struct console *co, char *options)
if (!uap)
return -ENODEV;

ret = clk_prepare(uap->clk);
if (ret)
return ret;

uap->port.uartclk = clk_get_rate(uap->clk);

if (options)
Expand Down

0 comments on commit 3edd09e

Please sign in to comment.