projects
/
GitHub
/
LineageOS
/
G12
/
android_kernel_amlogic_linux-4.9.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
982db66
)
[ARM] 5517/1: integrator: don't put clock lookups in __initdata
author
Rabin Vincent
<rabin@rab.in>
Mon, 18 May 2009 16:26:08 +0000
(17:26 +0100)
committer
Russell King
<rmk+kernel@arm.linux.org.uk>
Mon, 18 May 2009 16:43:16 +0000
(17:43 +0100)
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>
arch/arm/mach-integrator/core.c
patch
|
blob
|
blame
|
history
diff --git
a/arch/arm/mach-integrator/core.c
b/arch/arm/mach-integrator/core.c
index 6f8872913073f9ba8b4527ed0ffd50d22cafa84e..a0f60e55da6a8a2bb7c1cf05fc6bd889e605721f 100644
(file)
--- a/
arch/arm/mach-integrator/core.c
+++ b/
arch/arm/mach-integrator/core.c
@@
-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,