Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit a93ea9b3 authored by Rabin Vincent's avatar Rabin Vincent Committed by Russell King
Browse files

[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: default avatarRabin Vincent <rabin@rab.in>
Signed-off-by: default avatarRussell King <rmk+kernel@arm.linux.org.uk>
parent 982db663
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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,