Skip to content

Commit a93ea9b

Browse files
vitkyrkaRussell King
authored andcommitted
[ARM] 5517/1: integrator: 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 982db66 commit a93ea9b

File tree

1 file changed

+1
-1
lines changed
  • arch/arm/mach-integrator

1 file changed

+1
-1
lines changed

arch/arm/mach-integrator/core.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -121,7 +121,7 @@ static struct clk uartclk = {
121121
.rate = 14745600,
122122
};
123123

124-
static struct clk_lookup lookups[] __initdata = {
124+
static struct clk_lookup lookups[] = {
125125
{ /* UART0 */
126126
.dev_id = "mb:16",
127127
.clk = &uartclk,

0 commit comments

Comments
 (0)