diff options
| author | Oliver Neukum <[email protected]> | 2025-06-05 12:28:45 +0000 |
|---|---|---|
| committer | Greg Kroah-Hartman <[email protected]> | 2025-06-19 10:35:50 +0000 |
| commit | cee4392a57e14a799fbdee193bc4c0de65b29521 (patch) | |
| tree | fda60ed47add7803d21d2c17e293f2f9f8e9fc21 | |
| parent | usb: dwc3: Abort suspend on soft disconnect failure (diff) | |
| download | kernel-cee4392a57e14a799fbdee193bc4c0de65b29521.tar.gz kernel-cee4392a57e14a799fbdee193bc4c0de65b29521.zip | |
Logitech C-270 even more broken
Some varieties of this device don't work with
RESET_RESUME alone.
Signed-off-by: Oliver Neukum <[email protected]>
Cc: stable <[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, 2 insertions, 1 deletions
diff --git a/drivers/usb/core/quirks.c b/drivers/usb/core/quirks.c index 53d68d20fb62..0cf94c7a2c9c 100644 --- a/drivers/usb/core/quirks.c +++ b/drivers/usb/core/quirks.c @@ -227,7 +227,8 @@ static const struct usb_device_id usb_quirk_list[] = { { USB_DEVICE(0x046a, 0x0023), .driver_info = USB_QUIRK_RESET_RESUME }, /* Logitech HD Webcam C270 */ - { USB_DEVICE(0x046d, 0x0825), .driver_info = USB_QUIRK_RESET_RESUME }, + { USB_DEVICE(0x046d, 0x0825), .driver_info = USB_QUIRK_RESET_RESUME | + USB_QUIRK_NO_LPM}, /* Logitech HD Pro Webcams C920, C920-C, C922, C925e and C930e */ { USB_DEVICE(0x046d, 0x082d), .driver_info = USB_QUIRK_DELAY_INIT }, |
