Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 261926
b: refs/heads/master
c: 7912825
h: refs/heads/master
v: v3
  • Loading branch information
Paul Mundt committed Jun 24, 2011
1 parent cb29694 commit 24e868f
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 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: 225ca45c3c64964163ea1fa85e2081af85956eed
refs/heads/master: 7912825d8b755e6a5b9839eab910f451b0271aba
2 changes: 1 addition & 1 deletion trunk/arch/sh/boards/board-apsh4a3a.c
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ static int apsh4a3a_clk_init(void)
int ret;

clk = clk_get(NULL, "extal");
if (!clk || IS_ERR(clk))
if (IS_ERR(clk))
return PTR_ERR(clk);
ret = clk_set_rate(clk, 33333000);
clk_put(clk);
Expand Down
2 changes: 1 addition & 1 deletion trunk/arch/sh/boards/board-apsh4ad0a.c
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ static int apsh4ad0a_clk_init(void)
int ret;

clk = clk_get(NULL, "extal");
if (!clk || IS_ERR(clk))
if (IS_ERR(clk))
return PTR_ERR(clk);
ret = clk_set_rate(clk, 33333000);
clk_put(clk);
Expand Down
2 changes: 1 addition & 1 deletion trunk/arch/sh/boards/board-sh7785lcr.c
Original file line number Diff line number Diff line change
Expand Up @@ -299,7 +299,7 @@ static int sh7785lcr_clk_init(void)
int ret;

clk = clk_get(NULL, "extal");
if (!clk || IS_ERR(clk))
if (IS_ERR(clk))
return PTR_ERR(clk);
ret = clk_set_rate(clk, 33333333);
clk_put(clk);
Expand Down
2 changes: 1 addition & 1 deletion trunk/arch/sh/boards/board-urquell.c
Original file line number Diff line number Diff line change
Expand Up @@ -190,7 +190,7 @@ static int urquell_clk_init(void)
return -EINVAL;

clk = clk_get(NULL, "extal");
if (!clk || IS_ERR(clk))
if (IS_ERR(clk))
return PTR_ERR(clk);
ret = clk_set_rate(clk, 33333333);
clk_put(clk);
Expand Down
2 changes: 1 addition & 1 deletion trunk/arch/sh/boards/mach-sdk7786/setup.c
Original file line number Diff line number Diff line change
Expand Up @@ -194,7 +194,7 @@ static int sdk7786_clk_init(void)
return -EINVAL;

clk = clk_get(NULL, "extal");
if (!clk || IS_ERR(clk))
if (IS_ERR(clk))
return PTR_ERR(clk);
ret = clk_set_rate(clk, 33333333);
clk_put(clk);
Expand Down

0 comments on commit 24e868f

Please sign in to comment.