diff options
author | Jiri Kosina <jkosina@suse.cz> | 2020-04-15 15:51:42 +0300 |
---|---|---|
committer | Jiri Kosina <jkosina@suse.cz> | 2020-04-15 15:51:42 +0300 |
commit | 185af3e775b693f773d9a4b5a8c3cda69fc8ca0f (patch) | |
tree | fcb6473e92d9391ef4d59aa572f011f0a29c61ef /drivers/hid/hid-alps.c | |
parent | 640e403b1fd24e7f31ac6f29f0b6a21d285ed729 (diff) | |
download | linux-185af3e775b693f773d9a4b5a8c3cda69fc8ca0f.tar.xz |
HID: alps: ALPS_1657 is too specific; use U1_UNICORN_LEGACY instead
HID_DEVICE_ID_ALPS_1657 PID is too specific, as there are many other
ALPS hardware IDs using this particular touchpad.
Rename the identifier to HID_DEVICE_ID_ALPS_U1_UNICORN_LEGACY in order
to describe reality better.
Fixes: 640e403b1fd24 ("HID: alps: Add AUI1657 device ID")
Reported-by: Xiaojian Cao <xiaojian.cao@cn.alps.com>
Signed-off-by: Jiri Kosina <jkosina@suse.cz>
Diffstat (limited to 'drivers/hid/hid-alps.c')
-rw-r--r-- | drivers/hid/hid-alps.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/hid/hid-alps.c b/drivers/hid/hid-alps.c index c2a2bd528890..b2ad319a74b9 100644 --- a/drivers/hid/hid-alps.c +++ b/drivers/hid/hid-alps.c @@ -802,7 +802,7 @@ static int alps_probe(struct hid_device *hdev, const struct hid_device_id *id) break; case HID_DEVICE_ID_ALPS_U1_DUAL: case HID_DEVICE_ID_ALPS_U1: - case HID_DEVICE_ID_ALPS_1657: + case HID_DEVICE_ID_ALPS_U1_UNICORN_LEGACY: data->dev_type = U1; break; default: |