Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 187629
b: refs/heads/master
c: 50ee2d3
h: refs/heads/master
i:
  187627: 31e7c45
v: v3
  • Loading branch information
Ben Dooks committed Jan 26, 2010
1 parent fab2d38 commit 58b78fd
Show file tree
Hide file tree
Showing 2 changed files with 6 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: 8428d47a36a35c457a1147c3e8aa61c1be343604
refs/heads/master: 50ee2d35a592ead260527244af5160c7fa6189ea
6 changes: 5 additions & 1 deletion trunk/arch/arm/plat-samsung/clock.c
Original file line number Diff line number Diff line change
Expand Up @@ -343,8 +343,12 @@ int s3c24xx_register_clocks(struct clk **clks, int nr_clks)
int fails = 0;

for (; nr_clks > 0; nr_clks--, clks++) {
if (s3c24xx_register_clock(*clks) < 0)
if (s3c24xx_register_clock(*clks) < 0) {
struct clk *clk = *clks;
printk(KERN_ERR "%s: failed to register %p: %s\n",
__func__, clk, clk->name);
fails++;
}
}

return fails;
Expand Down

0 comments on commit 58b78fd

Please sign in to comment.