Commit f27803af authored by Dave Jones's avatar Dave Jones Committed by Dave Jones

[CPUFREQ] Fix powernow-k7 when ACPI_PROCESSOR built as module.

                                                                                         
From Herbert Xu
Signed-off-by: default avatarDave Jones <davej@redhat.com>
parent 024d1f01
...@@ -28,7 +28,7 @@ ...@@ -28,7 +28,7 @@
#include <asm/io.h> #include <asm/io.h>
#include <asm/system.h> #include <asm/system.h>
#ifdef CONFIG_ACPI_PROCESSOR #if defined(CONFIG_ACPI_PROCESSOR) || defined(CONFIG_ACPI_PROCESSOR_MODULE)
#include <linux/acpi.h> #include <linux/acpi.h>
#include <acpi/processor.h> #include <acpi/processor.h>
#endif #endif
...@@ -63,7 +63,7 @@ struct pst_s { ...@@ -63,7 +63,7 @@ struct pst_s {
u8 numpstates; u8 numpstates;
}; };
#ifdef CONFIG_ACPI_PROCESSOR #if defined(CONFIG_ACPI_PROCESSOR) || defined(CONFIG_ACPI_PROCESSOR_MODULE)
union powernow_acpi_control_t { union powernow_acpi_control_t {
struct { struct {
unsigned long fid:5, unsigned long fid:5,
...@@ -293,7 +293,7 @@ static void change_speed (unsigned int index) ...@@ -293,7 +293,7 @@ static void change_speed (unsigned int index)
} }
#ifdef CONFIG_ACPI_PROCESSOR #if defined(CONFIG_ACPI_PROCESSOR) || defined(CONFIG_ACPI_PROCESSOR_MODULE)
struct acpi_processor_performance *acpi_processor_perf; struct acpi_processor_performance *acpi_processor_perf;
...@@ -642,7 +642,7 @@ static int __init powernow_init (void) ...@@ -642,7 +642,7 @@ static int __init powernow_init (void)
static void __exit powernow_exit (void) static void __exit powernow_exit (void)
{ {
#ifdef CONFIG_ACPI_PROCESSOR #if defined(CONFIG_ACPI_PROCESSOR) || defined(CONFIG_ACPI_PROCESSOR_MODULE)
if (acpi_processor_perf) { if (acpi_processor_perf) {
acpi_processor_unregister_performance(acpi_processor_perf, 0); acpi_processor_unregister_performance(acpi_processor_perf, 0);
kfree(acpi_processor_perf); kfree(acpi_processor_perf);
......
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