aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLee, Chun-Yi <joeyli.kernel@gmail.com>2016-11-02 20:18:52 -0400
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2017-04-21 03:31:24 -0400
commit03470ba96a96754573db076b2700544843be8aa9 (patch)
treef06f34c8cdd3dd23a52abafe862beb064c88f7fe
parenta6ca4946676b8855ebc81b72a9ced3f64dc5f1d4 (diff)
platform/x86: acer-wmi: setup accelerometer when machine has appropriate notify event
commit 98d610c3739ac354319a6590b915f4624d9151e6 upstream. The accelerometer event relies on the ACERWMID_EVENT_GUID notify. So, this patch changes the codes to setup accelerometer input device when detected ACERWMID_EVENT_GUID. It avoids that the accel input device created on every Acer machines. In addition, patch adds a clearly parsing logic of accelerometer hid to acer_wmi_get_handle_cb callback function. It is positive matching the "SENR" name with "BST0001" device to avoid non-supported hardware. Reported-by: Bjørn Mork <bjorn@mork.no> Cc: Darren Hart <dvhart@infradead.org> Signed-off-by: Lee, Chun-Yi <jlee@suse.com> [andy: slightly massage commit message] Signed-off-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com> Cc: Ben Hutchings <ben@decadent.org.uk> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
-rw-r--r--drivers/platform/x86/acer-wmi.c22
1 files changed, 18 insertions, 4 deletions
diff --git a/drivers/platform/x86/acer-wmi.c b/drivers/platform/x86/acer-wmi.c
index a66192f692e3..c29b9b611ab2 100644
--- a/drivers/platform/x86/acer-wmi.c
+++ b/drivers/platform/x86/acer-wmi.c
@@ -1846,11 +1846,24 @@ static int __init acer_wmi_enable_lm(void)
1846 return status; 1846 return status;
1847} 1847}
1848 1848
1849#define ACER_WMID_ACCEL_HID "BST0001"
1850
1849static acpi_status __init acer_wmi_get_handle_cb(acpi_handle ah, u32 level, 1851static acpi_status __init acer_wmi_get_handle_cb(acpi_handle ah, u32 level,
1850 void *ctx, void **retval) 1852 void *ctx, void **retval)
1851{ 1853{
1854 struct acpi_device *dev;
1855
1856 if (!strcmp(ctx, "SENR")) {
1857 if (acpi_bus_get_device(ah, &dev))
1858 return AE_OK;
1859 if (!strcmp(ACER_WMID_ACCEL_HID, acpi_device_hid(dev)))
1860 return AE_OK;
1861 } else
1862 return AE_OK;
1863
1852 *(acpi_handle *)retval = ah; 1864 *(acpi_handle *)retval = ah;
1853 return AE_OK; 1865
1866 return AE_CTRL_TERMINATE;
1854} 1867}
1855 1868
1856static int __init acer_wmi_get_handle(const char *name, const char *prop, 1869static int __init acer_wmi_get_handle(const char *name, const char *prop,
@@ -1877,7 +1890,7 @@ static int __init acer_wmi_accel_setup(void)
1877{ 1890{
1878 int err; 1891 int err;
1879 1892
1880 err = acer_wmi_get_handle("SENR", "BST0001", &gsensor_handle); 1893 err = acer_wmi_get_handle("SENR", ACER_WMID_ACCEL_HID, &gsensor_handle);
1881 if (err) 1894 if (err)
1882 return err; 1895 return err;
1883 1896
@@ -2233,10 +2246,11 @@ static int __init acer_wmi_init(void)
2233 err = acer_wmi_input_setup(); 2246 err = acer_wmi_input_setup();
2234 if (err) 2247 if (err)
2235 return err; 2248 return err;
2249 err = acer_wmi_accel_setup();
2250 if (err)
2251 return err;
2236 } 2252 }
2237 2253
2238 acer_wmi_accel_setup();
2239
2240 err = platform_driver_register(&acer_platform_driver); 2254 err = platform_driver_register(&acer_platform_driver);
2241 if (err) { 2255 if (err) {
2242 pr_err("Unable to register platform driver\n"); 2256 pr_err("Unable to register platform driver\n");