mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-12-28 11:18:45 +07:00
0c043d70d0
Looks like the Bios of the Lenovo Legion Y7000 is using ELAN061B
when the actual device is supposed to be used with hid-multitouch.
Remove it from the list of the supported device, hoping that
no one will complain about the loss in functionality.
Link: https://bugzilla.kernel.org/show_bug.cgi?id=203467
Fixes: 738c06d0e4
("Input: elan_i2c - add hardware ID for multiple Lenovo laptops")
Signed-off-by: Benjamin Tissoires <benjamin.tissoires@redhat.com>
Signed-off-by: Dmitry Torokhov <dmitry.torokhov@gmail.com>
77 lines
1.7 KiB
C
77 lines
1.7 KiB
C
/*
|
|
* Elan I2C/SMBus Touchpad device whitelist
|
|
*
|
|
* Copyright (c) 2013 ELAN Microelectronics Corp.
|
|
*
|
|
* Author: æ維 (Duson Lin) <dusonlin@emc.com.tw>
|
|
* Author: KT Liao <kt.liao@emc.com.tw>
|
|
* Version: 1.6.3
|
|
*
|
|
* Based on cyapa driver:
|
|
* copyright (c) 2011-2012 Cypress Semiconductor, Inc.
|
|
* copyright (c) 2011-2012 Google, Inc.
|
|
*
|
|
* This program is free software; you can redistribute it and/or modify it
|
|
* under the terms of the GNU General Public License version 2 as published
|
|
* by the Free Software Foundation.
|
|
*
|
|
* Trademarks are the property of their respective owners.
|
|
*/
|
|
|
|
#ifndef __ELAN_I2C_IDS_H
|
|
#define __ELAN_I2C_IDS_H
|
|
|
|
#include <linux/mod_devicetable.h>
|
|
|
|
static const struct acpi_device_id elan_acpi_id[] = {
|
|
{ "ELAN0000", 0 },
|
|
{ "ELAN0100", 0 },
|
|
{ "ELAN0600", 0 },
|
|
{ "ELAN0601", 0 },
|
|
{ "ELAN0602", 0 },
|
|
{ "ELAN0603", 0 },
|
|
{ "ELAN0604", 0 },
|
|
{ "ELAN0605", 0 },
|
|
{ "ELAN0606", 0 },
|
|
{ "ELAN0607", 0 },
|
|
{ "ELAN0608", 0 },
|
|
{ "ELAN0609", 0 },
|
|
{ "ELAN060B", 0 },
|
|
{ "ELAN060C", 0 },
|
|
{ "ELAN060F", 0 },
|
|
{ "ELAN0610", 0 },
|
|
{ "ELAN0611", 0 },
|
|
{ "ELAN0612", 0 },
|
|
{ "ELAN0615", 0 },
|
|
{ "ELAN0616", 0 },
|
|
{ "ELAN0617", 0 },
|
|
{ "ELAN0618", 0 },
|
|
{ "ELAN0619", 0 },
|
|
{ "ELAN061A", 0 },
|
|
/* { "ELAN061B", 0 }, not working on the Lenovo Legion Y7000 */
|
|
{ "ELAN061C", 0 },
|
|
{ "ELAN061D", 0 },
|
|
{ "ELAN061E", 0 },
|
|
{ "ELAN061F", 0 },
|
|
{ "ELAN0620", 0 },
|
|
{ "ELAN0621", 0 },
|
|
{ "ELAN0622", 0 },
|
|
{ "ELAN0623", 0 },
|
|
{ "ELAN0624", 0 },
|
|
{ "ELAN0625", 0 },
|
|
{ "ELAN0626", 0 },
|
|
{ "ELAN0627", 0 },
|
|
{ "ELAN0628", 0 },
|
|
{ "ELAN0629", 0 },
|
|
{ "ELAN062A", 0 },
|
|
{ "ELAN062B", 0 },
|
|
{ "ELAN062C", 0 },
|
|
{ "ELAN062D", 0 },
|
|
{ "ELAN0631", 0 },
|
|
{ "ELAN0632", 0 },
|
|
{ "ELAN1000", 0 },
|
|
{ }
|
|
};
|
|
|
|
#endif /* __ELAN_I2C_IDS_H */
|