diff options
author | Joshua Hoblitt <jhoblitt@ifa.hawaii.edu> | 2007-05-21 22:47:43 -0400 |
---|---|---|
committer | Dave Jones <davej@redhat.com> | 2007-06-06 17:23:46 -0400 |
commit | e8666b2718fdb5bf0ea7c3126f7e292bbbf2946b (patch) | |
tree | fb1e0a2d6fadf5c6083c5fcff2e3fb106efd2eb7 /arch/i386 | |
parent | 275bc6b7f6429afb8d7a883c2e267547dd899066 (diff) |
[CPUFREQ] Kconfig powernow-k8 driver should depend on ACPI P-States driver
powernow-k8 really needs to use ACPI to function on SMP systems.
The current Kconfig allows us to build kernels which fail mysteriously
for some users due to us trying to automatically enable this, and
getting it wrong. It's easier to just present this as an option
to the user.
Signed-off-by: Joshua Hoblitt <jhoblitt@ifa.hawaii.edu>
Signed-off-by: Dave Jones <davej@redhat.com>
Diffstat (limited to 'arch/i386')
-rw-r--r-- | arch/i386/kernel/cpu/cpufreq/Kconfig | 13 |
1 files changed, 10 insertions, 3 deletions
diff --git a/arch/i386/kernel/cpu/cpufreq/Kconfig b/arch/i386/kernel/cpu/cpufreq/Kconfig index e912aae9473c..e77754ca94b4 100644 --- a/arch/i386/kernel/cpu/cpufreq/Kconfig +++ b/arch/i386/kernel/cpu/cpufreq/Kconfig | |||
@@ -90,10 +90,17 @@ config X86_POWERNOW_K8 | |||
90 | If in doubt, say N. | 90 | If in doubt, say N. |
91 | 91 | ||
92 | config X86_POWERNOW_K8_ACPI | 92 | config X86_POWERNOW_K8_ACPI |
93 | bool | 93 | bool "ACPI Support" |
94 | depends on X86_POWERNOW_K8 && ACPI_PROCESSOR | 94 | select ACPI_PROCESSOR |
95 | depends on !(X86_POWERNOW_K8 = y && ACPI_PROCESSOR = m) | 95 | depends on X86_POWERNOW_K8 |
96 | default y | 96 | default y |
97 | help | ||
98 | This provides access to the K8s Processor Performance States via ACPI. | ||
99 | This driver is probably required for CPUFreq to work with multi-socket and | ||
100 | SMP systems. It is not required on at least some single-socket yet | ||
101 | multi-core systems, even if SMP is enabled. | ||
102 | |||
103 | It is safe to say Y here. | ||
97 | 104 | ||
98 | config X86_GX_SUSPMOD | 105 | config X86_GX_SUSPMOD |
99 | tristate "Cyrix MediaGX/NatSemi Geode Suspend Modulation" | 106 | tristate "Cyrix MediaGX/NatSemi Geode Suspend Modulation" |