Message ID | 20210212104423.166197-1-ydewid@gmail.com |
---|---|
State | New |
Headers | show |
Series | USB: quirks: Goodix Fingerprint device is not a modem | expand |
diff --git a/drivers/usb/class/cdc-acm.c b/drivers/usb/class/cdc-acm.c index 78190574581..41d20a44dc3 100644 --- a/drivers/usb/class/cdc-acm.c +++ b/drivers/usb/class/cdc-acm.c @@ -1922,6 +1922,11 @@ static const struct usb_device_id acm_ids[] = { .driver_info = IGNORE_DEVICE, }, + /* Exclude Goodix Fingerprint Reader */ + { USB_DEVICE(0x27c6, 0x5395), + .driver_info = IGNORE_DEVICE, + }, + { USB_DEVICE(0x1bc7, 0x0021), /* Telit 3G ACM only composition */ .driver_info = SEND_ZERO_PACKET, },
The CDC ACM driver is false matching the Goodix Fingerprint device against the USB_CDC_ACM_PROTO_AT_V25TER. Signed-off-by: Yorick de Wid <ydewid@gmail.com> --- drivers/usb/class/cdc-acm.c | 5 +++++ 1 file changed, 5 insertions(+)