diff options
| author | Johan Hovold <[email protected]> | 2020-01-10 19:59:52 +0000 |
|---|---|---|
| committer | Dmitry Torokhov <[email protected]> | 2020-01-10 22:42:56 +0000 |
| commit | cfa4f6a99fb183742cace65ec551b444852b8ef6 (patch) | |
| tree | 51b8568e9b458692b5fb3d4528341940112aebfa | |
| parent | Input: aiptek - fix endpoint sanity check (diff) | |
| download | kernel-cfa4f6a99fb183742cace65ec551b444852b8ef6.tar.gz kernel-cfa4f6a99fb183742cace65ec551b444852b8ef6.zip | |
Input: aiptek - use descriptors of current altsetting
Make sure to always use the descriptors of the current alternate setting
to avoid future issues when accessing fields that may differ between
settings.
Signed-off-by: Johan Hovold <[email protected]>
Acked-by: Vladis Dronov <[email protected]>
Link: https://lore.kernel.org/r/[email protected]
Signed-off-by: Dmitry Torokhov <[email protected]>
| -rw-r--r-- | drivers/input/tablet/aiptek.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/input/tablet/aiptek.c b/drivers/input/tablet/aiptek.c index 06d0ffef4a17..e08b0ef078e8 100644 --- a/drivers/input/tablet/aiptek.c +++ b/drivers/input/tablet/aiptek.c @@ -1713,7 +1713,7 @@ aiptek_probe(struct usb_interface *intf, const struct usb_device_id *id) aiptek->inputdev = inputdev; aiptek->intf = intf; - aiptek->ifnum = intf->altsetting[0].desc.bInterfaceNumber; + aiptek->ifnum = intf->cur_altsetting->desc.bInterfaceNumber; aiptek->inDelay = 0; aiptek->endDelay = 0; aiptek->previousJitterable = 0; |
