forked from Minki/linux
[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 <rabin@rab.in> Signed-off-by: Russell King <rmk+kernel@arm.linux.org.uk>
This commit is contained in:
parent
982db66352
commit
a93ea9b357
@ -121,7 +121,7 @@ static struct clk uartclk = {
|
|||||||
.rate = 14745600,
|
.rate = 14745600,
|
||||||
};
|
};
|
||||||
|
|
||||||
static struct clk_lookup lookups[] __initdata = {
|
static struct clk_lookup lookups[] = {
|
||||||
{ /* UART0 */
|
{ /* UART0 */
|
||||||
.dev_id = "mb:16",
|
.dev_id = "mb:16",
|
||||||
.clk = &uartclk,
|
.clk = &uartclk,
|
||||||
|
Loading…
Reference in New Issue
Block a user