diff options
author | Len Brown <lenb@toshiba.site> | 2006-03-31 00:37:23 -0500 |
---|---|---|
committer | Len Brown <len.brown@intel.com> | 2006-03-31 00:37:23 -0500 |
commit | 0eacee585a89ce5827b572a73a024931506bef48 (patch) | |
tree | 063fb47ffc91fd9863f8314acf2db58001414736 /drivers/acpi | |
parent | ce362c009250340358a7221f3cdb7954cbf19c01 (diff) | |
download | linux-stable-0eacee585a89ce5827b572a73a024931506bef48.tar.gz linux-stable-0eacee585a89ce5827b572a73a024931506bef48.tar.bz2 linux-stable-0eacee585a89ce5827b572a73a024931506bef48.zip |
ACPI: enable BIOS warning
http://bugzilla.kernel.org/show_bug.cgi?id=5452
Signed-off-by: Len Brown <len.brown@intel.com>
Diffstat (limited to 'drivers/acpi')
-rw-r--r-- | drivers/acpi/processor_core.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/acpi/processor_core.c b/drivers/acpi/processor_core.c index 713b763884a9..18d380f095b5 100644 --- a/drivers/acpi/processor_core.c +++ b/drivers/acpi/processor_core.c @@ -558,8 +558,8 @@ static int acpi_processor_start(struct acpi_device *device) */ if (processor_device_array[pr->id] != NULL && processor_device_array[pr->id] != (void *)device) { - ACPI_DEBUG_PRINT((ACPI_DB_ERROR, "BIOS reporting wrong ACPI id" - "for the processor\n")); + printk(KERN_WARNING "BIOS reported wrong ACPI id" + "for the processor\n"); return_VALUE(-ENODEV); } processor_device_array[pr->id] = (void *)device; |