Commit 5b253d88cc6c65a23cefc457a5a4ef139913c5fc
Committed by
Greg Kroah-Hartman
1 parent
d178bc3a70
Exists in
master
and in
6 other branches
USB: add quirk for Logitech C300 web cam
My webcam is a Logitech C300 and I get "chipmunk"ed squeaky sound. The following trivial patch fixes it. Signed-off-by: Jon Levell <linuxusb@coralbark.net> Cc: stable <stable@kernel.org> Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
Showing 1 changed file with 3 additions and 0 deletions Side-by-side Diff
drivers/usb/core/quirks.c
... | ... | @@ -44,6 +44,9 @@ |
44 | 44 | /* Logitech Webcam C250 */ |
45 | 45 | { USB_DEVICE(0x046d, 0x0804), .driver_info = USB_QUIRK_RESET_RESUME }, |
46 | 46 | |
47 | + /* Logitech Webcam C300 */ | |
48 | + { USB_DEVICE(0x046d, 0x0805), .driver_info = USB_QUIRK_RESET_RESUME }, | |
49 | + | |
47 | 50 | /* Logitech Webcam B/C500 */ |
48 | 51 | { USB_DEVICE(0x046d, 0x0807), .driver_info = USB_QUIRK_RESET_RESUME }, |
49 | 52 |