diff options
author | Alexey Starikovskiy <astarikovskiy@suse.de> | 2009-01-13 18:57:47 -0500 |
---|---|---|
committer | Len Brown <len.brown@intel.com> | 2009-01-16 14:00:51 -0500 |
commit | 235c4a59278eb07e61d909f1f0c233733034a8b3 (patch) | |
tree | 84d88c2994d4e430e4d0e7c4ef2c18108aa31f79 | |
parent | c59765042f53a79a7a65585042ff463b69cb248c (diff) |
ACPI: EC: Limit workaround for ASUS notebooks even more
References: http://bugzilla.kernel.org/show_bug.cgi?id=11884
Signed-off-by: Alexey Starikovskiy <astarikovskiy@suse.de>
Signed-off-by: Len Brown <len.brown@intel.com>
-rw-r--r-- | drivers/acpi/ec.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/drivers/acpi/ec.c b/drivers/acpi/ec.c index 8dfcbb8aff73..e0794264b9f7 100644 --- a/drivers/acpi/ec.c +++ b/drivers/acpi/ec.c | |||
@@ -1027,7 +1027,8 @@ int __init acpi_ec_ecdt_probe(void) | |||
1027 | * which needs it, has fake EC._INI method, so use it as flag. | 1027 | * which needs it, has fake EC._INI method, so use it as flag. |
1028 | * Keep boot_ec struct as it will be needed soon. | 1028 | * Keep boot_ec struct as it will be needed soon. |
1029 | */ | 1029 | */ |
1030 | if (ACPI_FAILURE(acpi_get_handle(boot_ec->handle, "_INI", &dummy))) | 1030 | if (!dmi_name_in_vendors("ASUS") || |
1031 | ACPI_FAILURE(acpi_get_handle(boot_ec->handle, "_INI", &dummy))) | ||
1031 | return -ENODEV; | 1032 | return -ENODEV; |
1032 | install: | 1033 | install: |
1033 | if (!ec_install_handlers(boot_ec)) { | 1034 | if (!ec_install_handlers(boot_ec)) { |