diff options
author | Ben Dooks <ben-linux@fluff.org> | 2010-01-06 01:21:38 +0900 |
---|---|---|
committer | Ben Dooks <ben-linux@fluff.org> | 2010-01-15 17:10:11 +0900 |
commit | 1d9f13c49ed750260f40317629bdd66160a3ac16 (patch) | |
tree | 3804e6a3fd0f7bf3b9e2869a26de3f018bff596a /arch/arm/plat-s3c64xx | |
parent | fb6e76cd2309c76d2120e013ff34ff6ab27aad88 (diff) | |
download | linux-3.10-1d9f13c49ed750260f40317629bdd66160a3ac16.tar.gz linux-3.10-1d9f13c49ed750260f40317629bdd66160a3ac16.tar.bz2 linux-3.10-1d9f13c49ed750260f40317629bdd66160a3ac16.zip |
ARM: SAMSUNG: Add call to register array of clocks
Add s3c_register_clocks() to register an array of clocks, printing
an error message if there is a problem. Replace all points in the code
where this could be used.
Signed-off-by: Ben Dooks <ben-linux@fluff.org>
Diffstat (limited to 'arch/arm/plat-s3c64xx')
-rw-r--r-- | arch/arm/plat-s3c64xx/clock.c | 10 |
1 files changed, 1 insertions, 9 deletions
diff --git a/arch/arm/plat-s3c64xx/clock.c b/arch/arm/plat-s3c64xx/clock.c index 7a36e899360..ae5883c00e7 100644 --- a/arch/arm/plat-s3c64xx/clock.c +++ b/arch/arm/plat-s3c64xx/clock.c @@ -274,15 +274,7 @@ void __init s3c64xx_register_clocks(void) int ptr; s3c24xx_register_clocks(clks, ARRAY_SIZE(clks)); - - clkp = init_clocks; - for (ptr = 0; ptr < ARRAY_SIZE(init_clocks); ptr++, clkp++) { - ret = s3c24xx_register_clock(clkp); - if (ret < 0) { - printk(KERN_ERR "Failed to register clock %s (%d)\n", - clkp->name, ret); - } - } + s3c_register_clocks(init_clocks, ARRAY_SIZE(init_clocks)); clkp = init_clocks_disable; for (ptr = 0; ptr < ARRAY_SIZE(init_clocks_disable); ptr++, clkp++) { |