Skip to content

Commit

Permalink
[ARM] 5517/1: integrator: 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 982db66 commit a93ea9b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion arch/arm/mach-integrator/core.c
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@ static struct clk uartclk = {
.rate = 14745600,
};

static struct clk_lookup lookups[] __initdata = {
static struct clk_lookup lookups[] = {
{ /* UART0 */
.dev_id = "mb:16",
.clk = &uartclk,
Expand Down

0 comments on commit a93ea9b

Please sign in to comment.