diff options
| author | Oliver Neukum <[email protected]> | 2025-04-08 13:57:46 +0000 |
|---|---|---|
| committer | Greg Kroah-Hartman <[email protected]> | 2025-04-11 14:26:36 +0000 |
| commit | e00b39a4f3552c730f1e24c8d62c4a8c6aad4e5d (patch) | |
| tree | c48fbf43058e184f835c38e797071445587de10d | |
| parent | usb: dwc3: gadget: check that event count does not exceed event buffer length (diff) | |
| download | kernel-e00b39a4f3552c730f1e24c8d62c4a8c6aad4e5d.tar.gz kernel-e00b39a4f3552c730f1e24c8d62c4a8c6aad4e5d.zip | |
USB: VLI disk crashes if LPM is used
This device needs the NO_LPM quirk.
Cc: stable <[email protected]>
Signed-off-by: Oliver Neukum <[email protected]>
Link: https://lore.kernel.org/r/[email protected]
Signed-off-by: Greg Kroah-Hartman <[email protected]>
| -rw-r--r-- | drivers/usb/core/quirks.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/drivers/usb/core/quirks.c b/drivers/usb/core/quirks.c index 61583a1b7ac6..87b48c176160 100644 --- a/drivers/usb/core/quirks.c +++ b/drivers/usb/core/quirks.c @@ -542,6 +542,9 @@ static const struct usb_device_id usb_quirk_list[] = { { USB_DEVICE(0x2040, 0x7200), .driver_info = USB_QUIRK_CONFIG_INTF_STRINGS }, + /* VLI disk */ + { USB_DEVICE(0x2109, 0x0711), .driver_info = USB_QUIRK_NO_LPM }, + /* Raydium Touchscreen */ { USB_DEVICE(0x2386, 0x3114), .driver_info = USB_QUIRK_NO_LPM }, |
