diff options
author | Ben Dooks <ben-linux@fluff.org> | 2010-01-24 20:46:51 -0500 |
---|---|---|
committer | Ben Dooks <ben-linux@fluff.org> | 2010-01-26 03:44:33 -0500 |
commit | 50ee2d35a592ead260527244af5160c7fa6189ea (patch) | |
tree | fac16b5ee3438278973d44deb100604524498475 /arch/arm/plat-samsung/clock.c | |
parent | 8428d47a36a35c457a1147c3e8aa61c1be343604 (diff) |
ARM: SAMSUNG: Add error printing to s3c24xx_register_clocks
Add an error print to s3c24xx_register_clocks to provide more useful
information when failing to register the clock.
I belive this was originally left out due to the possibility of a
problem with low-level debugging code. However, if the low-level
debug code is not functional by now there will be a whole other set of
problems being presented to the system.
Signed-off-by: Ben Dooks <ben-linux@fluff.org>
Diffstat (limited to 'arch/arm/plat-samsung/clock.c')
-rw-r--r-- | arch/arm/plat-samsung/clock.c | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/arch/arm/plat-samsung/clock.c b/arch/arm/plat-samsung/clock.c index 4b95b3920036..1b25c9d8c403 100644 --- a/arch/arm/plat-samsung/clock.c +++ b/arch/arm/plat-samsung/clock.c | |||
@@ -343,8 +343,12 @@ int s3c24xx_register_clocks(struct clk **clks, int nr_clks) | |||
343 | int fails = 0; | 343 | int fails = 0; |
344 | 344 | ||
345 | for (; nr_clks > 0; nr_clks--, clks++) { | 345 | for (; nr_clks > 0; nr_clks--, clks++) { |
346 | if (s3c24xx_register_clock(*clks) < 0) | 346 | if (s3c24xx_register_clock(*clks) < 0) { |
347 | struct clk *clk = *clks; | ||
348 | printk(KERN_ERR "%s: failed to register %p: %s\n", | ||
349 | __func__, clk, clk->name); | ||
347 | fails++; | 350 | fails++; |
351 | } | ||
348 | } | 352 | } |
349 | 353 | ||
350 | return fails; | 354 | return fails; |