Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit ab5d97db authored by Ben Dooks's avatar Ben Dooks
Browse files

ARM: SAMSUNG: Fix bad use of __initdata for s3c_register_clocks()



Functions should be marked __init, not __initdata.

Signed-off-by: default avatarBen Dooks <ben-linux@fluff.org>
parent f6b56704
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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;