Skip to content

Commit 982db66

Browse files
vitkyrkaRussell King
authored andcommitted
[ARM] 5518/1: versatile: don't put clock lookups in __initdata
Remove the __initdata annotation for the clock lookups, since they will be needed when loading modules which use clk_get(). Signed-off-by: Rabin Vincent <[email protected]> Signed-off-by: Russell King <[email protected]>
1 parent 8190b37 commit 982db66

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

arch/arm/mach-versatile/core.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -413,7 +413,7 @@ static struct clk ref24_clk = {
413413
.rate = 24000000,
414414
};
415415

416-
static struct clk_lookup lookups[] __initdata = {
416+
static struct clk_lookup lookups[] = {
417417
{ /* UART0 */
418418
.dev_id = "dev:f1",
419419
.clk = &ref24_clk,

0 commit comments

Comments
 (0)