diff options
author | Alex Chiang <achiang@hp.com> | 2009-12-20 14:19:14 -0500 |
---|---|---|
committer | Len Brown <len.brown@intel.com> | 2009-12-22 03:24:10 -0500 |
commit | 1d9cb470a755409ce97c3376174b1e234bd20371 (patch) | |
tree | cc0f35e02fed9b833be7bafda72b4980c4667ec9 /drivers | |
parent | 78f1699659963fff97975df44db6d5dbe7218e55 (diff) |
ACPI: processor: introduce arch_has_acpi_pdc
arch dependent helper function that tells us if we should attempt to
evaluate _PDC on this machine or not.
The x86 implementation assumes that the CPUs in the machine must be
homogeneous, and that you cannot mix CPUs of different vendors.
Cc: Tony Luck <tony.luck@intel.com>
Cc: Thomas Gleixner <tglx@linutronix.de>
Cc: Ingo Molnar <mingo@redhat.com>
Cc: "H. Peter Anvin" <hpa@zytor.com>
Signed-off-by: Alex Chiang <achiang@hp.com>
Signed-off-by: Len Brown <len.brown@intel.com>
Diffstat (limited to 'drivers')
-rw-r--r-- | drivers/acpi/processor_pdc.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/drivers/acpi/processor_pdc.c b/drivers/acpi/processor_pdc.c index b416c32dda04..931e735e9e37 100644 --- a/drivers/acpi/processor_pdc.c +++ b/drivers/acpi/processor_pdc.c | |||
@@ -69,6 +69,9 @@ static int acpi_processor_eval_pdc(struct acpi_processor *pr) | |||
69 | 69 | ||
70 | void acpi_processor_set_pdc(struct acpi_processor *pr) | 70 | void acpi_processor_set_pdc(struct acpi_processor *pr) |
71 | { | 71 | { |
72 | if (arch_has_acpi_pdc() == false) | ||
73 | return; | ||
74 | |||
72 | arch_acpi_processor_init_pdc(pr); | 75 | arch_acpi_processor_init_pdc(pr); |
73 | acpi_processor_eval_pdc(pr); | 76 | acpi_processor_eval_pdc(pr); |
74 | arch_acpi_processor_cleanup_pdc(pr); | 77 | arch_acpi_processor_cleanup_pdc(pr); |