projects
/
openwrt
/
staging
/
blogic.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
d56acac
)
avr32: Fix cpufreq oops when ondemand governor is default
author
Haavard Skinnemoen
<
[email protected]
>
Tue, 27 May 2008 07:37:42 +0000
(09:37 +0200)
committer
Haavard Skinnemoen
<
[email protected]
>
Tue, 27 May 2008 07:37:42 +0000
(09:37 +0200)
Move the AP7 cpufreq init to late_initcall() so that we don't try to
bring up cpufreq until the governor is ready. x86 also uses
late_initcall() for this.
Signed-off-by: Haavard Skinnemoen <
[email protected]
>
arch/avr32/mach-at32ap/cpufreq.c
patch
|
blob
|
history
diff --git
a/arch/avr32/mach-at32ap/cpufreq.c
b/arch/avr32/mach-at32ap/cpufreq.c
index 235524b79193ec945e88dc8d20e0edf674b942d6..5dd8d25428bfb7d6a48a084eee1d114d83efaeeb 100644
(file)
--- a/
arch/avr32/mach-at32ap/cpufreq.c
+++ b/
arch/avr32/mach-at32ap/cpufreq.c
@@
-108,5
+108,4
@@
static int __init at32_cpufreq_init(void)
{
return cpufreq_register_driver(&at32_driver);
}
-
-arch_initcall(at32_cpufreq_init);
+late_initcall(at32_cpufreq_init);