diff options
author | Ben Dooks <ben-linux@fluff.org> | 2010-01-24 20:39:23 -0500 |
---|---|---|
committer | Ben Dooks <ben-linux@fluff.org> | 2010-01-25 19:50:04 -0500 |
commit | ab5d97db1c6ced3e95c00d097931471707032b1f (patch) | |
tree | 126a20e8123c6990957cab623e32c9f90421f343 /arch/arm | |
parent | f6b56704f78b2667fc8f61d2f398931fbc032b62 (diff) |
ARM: SAMSUNG: Fix bad use of __initdata for s3c_register_clocks()
Functions should be marked __init, not __initdata.
Signed-off-by: Ben Dooks <ben-linux@fluff.org>
Diffstat (limited to 'arch/arm')
-rw-r--r-- | arch/arm/plat-samsung/clock.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/arm/plat-samsung/clock.c b/arch/arm/plat-samsung/clock.c index 0c746ae7b2a6..e9cdbe47beb6 100644 --- a/arch/arm/plat-samsung/clock.c +++ b/arch/arm/plat-samsung/clock.c | |||
@@ -344,7 +344,7 @@ int s3c24xx_register_clocks(struct clk **clks, int nr_clks) | |||
344 | * Call s3c24xx_register_clock() on the @clkp array given, printing an | 344 | * Call s3c24xx_register_clock() on the @clkp array given, printing an |
345 | * error if it fails to register the clock (unlikely). | 345 | * error if it fails to register the clock (unlikely). |
346 | */ | 346 | */ |
347 | void __initdata s3c_register_clocks(struct clk *clkp, int nr_clks) | 347 | void __init s3c_register_clocks(struct clk *clkp, int nr_clks) |
348 | { | 348 | { |
349 | int ret; | 349 | int ret; |
350 | 350 | ||