Skip to content

Commit

Permalink
ARM: SAMSUNG: Fix bad use of __initdata for s3c_register_clocks()
Browse files Browse the repository at this point in the history
Functions should be marked __init, not __initdata.

Signed-off-by: Ben Dooks <ben-linux@fluff.org>
  • Loading branch information
Ben Dooks committed Jan 26, 2010
1 parent f6b5670 commit ab5d97d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion arch/arm/plat-samsung/clock.c
Original file line number Diff line number Diff line change
Expand Up @@ -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;

Expand Down

0 comments on commit ab5d97d

Please sign in to comment.