diff mbox

ACPI: EC: Don't use Notebook as MSI vendor substitute

Message ID 20090830163022.27730.14328.stgit@thinkpad (mailing list archive)
State Accepted, archived
Delegated to: Len Brown
Headers show

Commit Message

Alexey Starikovskiy Aug. 30, 2009, 4:30 p.m. UTC
"Notebook" name is not unique to MSI, thus should be not be used
to identify MSI hardware.

Signed-off-by: Alexey Starikovskiy <astarikovskiy@suse.de>
---

 drivers/acpi/ec.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)



--
To unsubscribe from this list: send the line "unsubscribe linux-acpi" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
diff mbox

Patch

diff --git a/drivers/acpi/ec.c b/drivers/acpi/ec.c
index 839b542..bd35442 100644
--- a/drivers/acpi/ec.c
+++ b/drivers/acpi/ec.c
@@ -942,7 +942,7 @@  int __init acpi_ec_ecdt_probe(void)
 	 * Generate a boot ec context
 	 */
 	if (dmi_name_in_vendors("Micro-Star") ||
-	    dmi_name_in_vendors("Notebook")) {
+	    dmi_name_in_vendors("MICRO-STAR")) {
 		pr_info(PREFIX "Enabling special treatment for EC from MSI.\n");
 		EC_FLAGS_MSI = 1;
 	}