diff options
| author | Len Brown <len.brown@intel.com> | 2008-01-23 20:04:28 -0500 |
|---|---|---|
| committer | Len Brown <len.brown@intel.com> | 2008-01-23 21:23:51 -0500 |
| commit | f40cd6fddcb1d51d8a2a67ddc81c14a3532f3cb7 (patch) | |
| tree | 1f88c751d1c89d4beb57aa3d76a1f138a36f43cb | |
| parent | 5a4e143271b97dcaa113761a76942c4d4bc273a2 (diff) | |
ACPI: on OSI(Linux), print needed DMI rather than requesting dmidecode output
Signed-off-by: Len Brown <len.brown@intel.com>
| -rw-r--r-- | drivers/acpi/osl.c | 14 |
1 files changed, 10 insertions, 4 deletions
diff --git a/drivers/acpi/osl.c b/drivers/acpi/osl.c index 93ad5f40f2..2203153b54 100644 --- a/drivers/acpi/osl.c +++ b/drivers/acpi/osl.c | |||
| @@ -1190,10 +1190,16 @@ acpi_os_validate_interface (char *interface) | |||
| 1190 | if (!strcmp("Linux", interface)) { | 1190 | if (!strcmp("Linux", interface)) { |
| 1191 | printk(KERN_WARNING PREFIX | 1191 | printk(KERN_WARNING PREFIX |
| 1192 | "System BIOS is requesting _OSI(Linux)\n"); | 1192 | "System BIOS is requesting _OSI(Linux)\n"); |
| 1193 | printk(KERN_WARNING PREFIX | 1193 | if (acpi_dmi_dump()) |
| 1194 | "If \"acpi_osi=Linux\" works better,\n" | 1194 | printk(KERN_NOTICE PREFIX |
| 1195 | "Please send dmidecode " | 1195 | "[please extract dmidecode output]\n"); |
| 1196 | "to linux-acpi@vger.kernel.org\n"); | 1196 | printk(KERN_NOTICE PREFIX |
| 1197 | "Please send DMI info above to " | ||
| 1198 | "linux-acpi@vger.kernel.org\n"); | ||
| 1199 | printk(KERN_NOTICE PREFIX | ||
| 1200 | "If \"acpi_osi=%sLinux\" works better, " | ||
| 1201 | "please notify linux-acpi@vger.kernel.org\n", | ||
| 1202 | osi_linux ? "!" : ""); | ||
| 1197 | if(osi_linux) | 1203 | if(osi_linux) |
| 1198 | return AE_OK; | 1204 | return AE_OK; |
| 1199 | } | 1205 | } |
