ACPI: on OSI(Linux), print needed DMI rather than requesting dmidecode output
Signed-off-by: Len Brown <len.brown@intel.com>
This commit is contained in:
parent
5a4e143271
commit
f40cd6fddc
|
@ -1190,10 +1190,16 @@ acpi_os_validate_interface (char *interface)
|
||||||
if (!strcmp("Linux", interface)) {
|
if (!strcmp("Linux", interface)) {
|
||||||
printk(KERN_WARNING PREFIX
|
printk(KERN_WARNING PREFIX
|
||||||
"System BIOS is requesting _OSI(Linux)\n");
|
"System BIOS is requesting _OSI(Linux)\n");
|
||||||
printk(KERN_WARNING PREFIX
|
if (acpi_dmi_dump())
|
||||||
"If \"acpi_osi=Linux\" works better,\n"
|
printk(KERN_NOTICE PREFIX
|
||||||
"Please send dmidecode "
|
"[please extract dmidecode output]\n");
|
||||||
"to linux-acpi@vger.kernel.org\n");
|
printk(KERN_NOTICE PREFIX
|
||||||
|
"Please send DMI info above to "
|
||||||
|
"linux-acpi@vger.kernel.org\n");
|
||||||
|
printk(KERN_NOTICE PREFIX
|
||||||
|
"If \"acpi_osi=%sLinux\" works better, "
|
||||||
|
"please notify linux-acpi@vger.kernel.org\n",
|
||||||
|
osi_linux ? "!" : "");
|
||||||
if(osi_linux)
|
if(osi_linux)
|
||||||
return AE_OK;
|
return AE_OK;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue