diff options
author | Ben Dooks <ben-linux@fluff.org> | 2010-01-25 10:39:23 +0900 |
---|---|---|
committer | Ben Dooks <ben-linux@fluff.org> | 2010-01-26 09:50:04 +0900 |
commit | ab5d97db1c6ced3e95c00d097931471707032b1f (patch) | |
tree | 126a20e8123c6990957cab623e32c9f90421f343 /arch | |
parent | f6b56704f78b2667fc8f61d2f398931fbc032b62 (diff) | |
download | talos-obmc-linux-ab5d97db1c6ced3e95c00d097931471707032b1f.tar.gz talos-obmc-linux-ab5d97db1c6ced3e95c00d097931471707032b1f.zip |
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')
-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) * Call s3c24xx_register_clock() on the @clkp array given, printing an * error if it fails to register the clock (unlikely). */ -void __initdata s3c_register_clocks(struct clk *clkp, int nr_clks) +void __init s3c_register_clocks(struct clk *clkp, int nr_clks) { int ret; |