Commit b78e3987 authored by Andy Grover's avatar Andy Grover

ACPI: Better blacklist messages (Jasper Spaans)

parent 7c367c56
...@@ -310,11 +310,12 @@ acpi_boot_init (void) ...@@ -310,11 +310,12 @@ acpi_boot_init (void)
result = acpi_blacklisted(); result = acpi_blacklisted();
if (result) { if (result) {
printk(KERN_WARNING PREFIX "BIOS listed in blacklist, disabling ACPI support\n");
acpi_disabled = 1; acpi_disabled = 1;
return result; return result;
} }
else else
printk(KERN_NOTICE PREFIX "BIOS passes blacklist\n"); printk(KERN_NOTICE PREFIX "BIOS not listed in blacklist\n");
#ifdef CONFIG_X86_LOCAL_APIC #ifdef CONFIG_X86_LOCAL_APIC
......
...@@ -313,10 +313,11 @@ acpi_boot_init (void) ...@@ -313,10 +313,11 @@ acpi_boot_init (void)
result = acpi_blacklisted(); result = acpi_blacklisted();
if (result) { if (result) {
printk(KERN_WARNING PREFIX "BIOS listed in blacklist, disabling ACPI support\n");
acpi_disabled = 1; acpi_disabled = 1;
return result; return result;
} else } else
printk(KERN_NOTICE PREFIX "BIOS passes blacklist\n"); printk(KERN_NOTICE PREFIX "BIOS not listed in blacklist\n");
extern int disable_apic; extern int disable_apic;
......
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