Skip to content

Commit

Permalink
[ARM] 5518/1: versatile: don't put clock lookups in __initdata
Browse files Browse the repository at this point in the history
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 <rabin@rab.in>
Signed-off-by: Russell King <rmk+kernel@arm.linux.org.uk>
  • Loading branch information
Rabin Vincent authored and Russell King committed May 18, 2009
1 parent 8190b37 commit 982db66
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion arch/arm/mach-versatile/core.c
Original file line number Diff line number Diff line change
Expand Up @@ -413,7 +413,7 @@ static struct clk ref24_clk = {
.rate = 24000000,
};

static struct clk_lookup lookups[] __initdata = {
static struct clk_lookup lookups[] = {
{ /* UART0 */
.dev_id = "dev:f1",
.clk = &ref24_clk,
Expand Down

0 comments on commit 982db66

Please sign in to comment.