mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git
synced 2024-10-29 23:53:32 +00:00
[ARM] 5518/1: versatile: 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
8190b37f64
commit
982db66352
1 changed files with 1 additions and 1 deletions
|
@ -413,7 +413,7 @@ static struct clk ref24_clk = {
|
||||||
.rate = 24000000,
|
.rate = 24000000,
|
||||||
};
|
};
|
||||||
|
|
||||||
static struct clk_lookup lookups[] __initdata = {
|
static struct clk_lookup lookups[] = {
|
||||||
{ /* UART0 */
|
{ /* UART0 */
|
||||||
.dev_id = "dev:f1",
|
.dev_id = "dev:f1",
|
||||||
.clk = &ref24_clk,
|
.clk = &ref24_clk,
|
||||||
|
|
Loading…
Reference in a new issue