diff options
author | Maximilian Luz <luzmaximilian@gmail.com> | 2021-10-21 16:09:04 +0300 |
---|---|---|
committer | Hans de Goede <hdegoede@redhat.com> | 2021-10-22 11:55:23 +0300 |
commit | ab5fe33925c6b03f646a1153771dab047548e4d8 (patch) | |
tree | 90b39a326d15a6daee7d5c890f7a782688052b08 /drivers/hid/surface-hid | |
parent | dc0fd0acb6e0e8025a0a43ada54513b216254fac (diff) | |
download | linux-ab5fe33925c6b03f646a1153771dab047548e4d8.tar.xz |
HID: surface-hid: Allow driver matching for target ID 1 devices
Until now we have only ever seen HID devices with target ID 2. The new
Surface Laptop Studio however uses HID devices with target ID 1. Allow
matching this driver to those as well.
Cc: stable@vger.kernel.org # 5.14+
Signed-off-by: Maximilian Luz <luzmaximilian@gmail.com>
Acked-by: Benjamin Tissoires <benjamin.tissoires@redhat.com>
Link: https://lore.kernel.org/r/20211021130904.862610-4-luzmaximilian@gmail.com
Reviewed-by: Hans de Goede <hdegoede@redhat.com>
Signed-off-by: Hans de Goede <hdegoede@redhat.com>
Diffstat (limited to 'drivers/hid/surface-hid')
-rw-r--r-- | drivers/hid/surface-hid/surface_hid.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/hid/surface-hid/surface_hid.c b/drivers/hid/surface-hid/surface_hid.c index daa452367c0b..d4aa8c81903a 100644 --- a/drivers/hid/surface-hid/surface_hid.c +++ b/drivers/hid/surface-hid/surface_hid.c @@ -230,7 +230,7 @@ static void surface_hid_remove(struct ssam_device *sdev) } static const struct ssam_device_id surface_hid_match[] = { - { SSAM_SDEV(HID, 0x02, SSAM_ANY_IID, 0x00) }, + { SSAM_SDEV(HID, SSAM_ANY_TID, SSAM_ANY_IID, 0x00) }, { }, }; MODULE_DEVICE_TABLE(ssam, surface_hid_match); |