diff options
author | Andy Shevchenko <andriy.shevchenko@linux.intel.com> | 2017-10-08 20:04:43 +0200 |
---|---|---|
committer | Andy Shevchenko <andriy.shevchenko@linux.intel.com> | 2017-10-08 20:06:43 +0200 |
commit | dfea7e18276c6a702860c927298e15d4a4c2569d (patch) | |
tree | a5292bda588e90b1a16967452174d0b124bfc0a1 | |
parent | platform/x86: peaq-wmi: Blacklist Lenovo ideapad 700-15ISK (diff) | |
download | linux-dfea7e18276c6a702860c927298e15d4a4c2569d.tar.xz linux-dfea7e18276c6a702860c927298e15d4a4c2569d.zip |
platform/x86: peaq-wmi: Revert Blacklist Lenovo ideapad 700-15ISK
In favour of new approach this reverts commit
ff74972e966bfc586cea116f976866858d1b0fec.
Signed-off-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
-rw-r--r-- | drivers/platform/x86/peaq-wmi.c | 16 |
1 files changed, 1 insertions, 15 deletions
diff --git a/drivers/platform/x86/peaq-wmi.c b/drivers/platform/x86/peaq-wmi.c index e09f37cdeb3c..bc98ef95514a 100644 --- a/drivers/platform/x86/peaq-wmi.c +++ b/drivers/platform/x86/peaq-wmi.c @@ -8,7 +8,6 @@ */ #include <linux/acpi.h> -#include <linux/dmi.h> #include <linux/input-polldev.h> #include <linux/kernel.h> #include <linux/module.h> @@ -65,22 +64,9 @@ static void peaq_wmi_poll(struct input_polled_dev *dev) } } -static const struct dmi_system_id peaq_blacklist[] __initconst = { - { - /* Lenovo ideapad 700-15ISK does not have Dolby button */ - .ident = "Lenovo ideapad 700-15ISK", - .matches = { - DMI_MATCH(DMI_SYS_VENDOR, "LENOVO"), - DMI_MATCH(DMI_PRODUCT_NAME, "80RU"), - }, - }, - {} -}; - static int __init peaq_wmi_init(void) { - if (!wmi_has_guid(PEAQ_DOLBY_BUTTON_GUID) || - dmi_check_system(peaq_blacklist)) + if (!wmi_has_guid(PEAQ_DOLBY_BUTTON_GUID)) return -ENODEV; peaq_poll_dev = input_allocate_polled_device(); |