Commit f8267800 authored by Dave Jones's avatar Dave Jones

[CPUFREQ] Fix up centrino initcall level

centrino_init needs to be late_initcall so that the ACPI processor module
is completely up and running.
parent b861df79
...@@ -551,5 +551,5 @@ MODULE_AUTHOR ("Jeremy Fitzhardinge <jeremy@goop.org>"); ...@@ -551,5 +551,5 @@ MODULE_AUTHOR ("Jeremy Fitzhardinge <jeremy@goop.org>");
MODULE_DESCRIPTION ("Enhanced SpeedStep driver for Intel Pentium M processors."); MODULE_DESCRIPTION ("Enhanced SpeedStep driver for Intel Pentium M processors.");
MODULE_LICENSE ("GPL"); MODULE_LICENSE ("GPL");
module_init(centrino_init); late_initcall(centrino_init);
module_exit(centrino_exit); module_exit(centrino_exit);
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment