diff options
author | Len Brown <len.brown@intel.com> | 2005-09-03 02:55:47 -0400 |
---|---|---|
committer | Len Brown <len.brown@intel.com> | 2005-09-03 02:58:17 -0400 |
commit | 2413d2c12cf0dc5980d7b082d838d5468d83a8b9 (patch) | |
tree | 5164f2a7610c35610ca59cf801d8b9e4217f45d9 | |
parent | 129521dcc94f781890f8f668219ab79f0073ff9f (diff) | |
download | op-kernel-dev-2413d2c12cf0dc5980d7b082d838d5468d83a8b9.zip op-kernel-dev-2413d2c12cf0dc5980d7b082d838d5468d83a8b9.tar.gz |
[ACPI] build fix - processor_core.c w/ !CONFIG_SMP
http://bugzilla.kernel.org/show_bug.cgi?id=5128
Signed-off-by: Len Brown <len.brown@intel.com>
-rw-r--r-- | drivers/acpi/processor_core.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/acpi/processor_core.c b/drivers/acpi/processor_core.c index ac2dfa6..40d4e62 100644 --- a/drivers/acpi/processor_core.c +++ b/drivers/acpi/processor_core.c @@ -400,7 +400,7 @@ static int acpi_processor_remove_fs(struct acpi_device *device) /* Use the acpiid in MADT to map cpus in case of SMP */ #ifndef CONFIG_SMP -#define convert_acpiid_to_cpu(acpi_id) (0xff) +#define convert_acpiid_to_cpu(acpi_id, cpu_indexp) (0xff) #else #ifdef CONFIG_IA64 |