diff options
author | Rafał Bilski <rafalbilski@interia.pl> | 2006-07-07 02:48:26 -0400 |
---|---|---|
committer | Dave Jones <davej@redhat.com> | 2006-07-31 18:37:05 -0400 |
commit | 0d6daba5faed26a2f50a40adf5d4674a9a54717e (patch) | |
tree | 53cd3e49ee39a3a8a1d6ed270ebbb86127e76fb3 /arch | |
parent | 48b7bde0f6d5fd08d046b583cfa0118ad74c6caf (diff) |
[CPUFREQ] Longhaul - Initialise later.
Without this longhaul will always fail when compiled into kernel,
as it needs to initialise after the ACPI processor module.
I lost this when I was splitting patches. Sorry.
Signed-off-by: Rafał Bilski <rafalbilski@interia.pl>
Signed-off-by: Dave Jones <davej@redhat.com>
Diffstat (limited to 'arch')
-rw-r--r-- | arch/i386/kernel/cpu/cpufreq/longhaul.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/i386/kernel/cpu/cpufreq/longhaul.c b/arch/i386/kernel/cpu/cpufreq/longhaul.c index dfd243f497b2..7388fc3239d8 100644 --- a/arch/i386/kernel/cpu/cpufreq/longhaul.c +++ b/arch/i386/kernel/cpu/cpufreq/longhaul.c | |||
@@ -733,6 +733,6 @@ MODULE_AUTHOR ("Dave Jones <davej@codemonkey.org.uk>"); | |||
733 | MODULE_DESCRIPTION ("Longhaul driver for VIA Cyrix processors."); | 733 | MODULE_DESCRIPTION ("Longhaul driver for VIA Cyrix processors."); |
734 | MODULE_LICENSE ("GPL"); | 734 | MODULE_LICENSE ("GPL"); |
735 | 735 | ||
736 | module_init(longhaul_init); | 736 | late_initcall(longhaul_init); |
737 | module_exit(longhaul_exit); | 737 | module_exit(longhaul_exit); |
738 | 738 | ||