forked from torvalds/linux
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge tag 'usb-5.0-rc2' of git://git.kernel.org/pub/scm/linux/kernel/…
…git/gregkh/usb Pull USB fixes from Greg KH: "Here are some small USB driver fixes and quirk updates for 5.0-rc2. The majority here are some quirks for some storage devices to get them to work properly. There's also a fix here to resolve the reported issues with some audio devices that say they are UAC3 compliant, but really are not. And a fix up for the MAINTAINERS file to remove a dead url. All have been in linux-next with no reported issues" * tag 'usb-5.0-rc2' of git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/usb: usb: storage: Remove outdated URL from MAINTAINERS USB: Add USB_QUIRK_DELAY_CTRL_MSG quirk for Corsair K70 RGB usbcore: Select only first configuration for non-UAC3 compliant devices USB: storage: add quirk for SMI SM3350 USB: storage: don't insert sane sense for SPC3+ when bad sense specified usb: cdc-acm: send ZLP for Telit 3G Intel based modems
- Loading branch information
Showing
6 changed files
with
33 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -15806,7 +15806,6 @@ M: Alan Stern <[email protected]> | |
L: [email protected] | ||
L: [email protected] | ||
S: Maintained | ||
W: http://www.one-eyed-alien.net/~mdharm/linux-usb/ | ||
F: drivers/usb/storage/ | ||
|
||
USB MIDI DRIVER | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -1265,6 +1265,18 @@ UNUSUAL_DEV( 0x090c, 0x1132, 0x0000, 0xffff, | |
USB_SC_DEVICE, USB_PR_DEVICE, NULL, | ||
US_FL_FIX_CAPACITY ), | ||
|
||
/* | ||
* Reported by Icenowy Zheng <[email protected]> | ||
* The SMI SM3350 USB-UFS bridge controller will enter a wrong state | ||
* that do not process read/write command if a long sense is requested, | ||
* so force to use 18-byte sense. | ||
*/ | ||
UNUSUAL_DEV( 0x090c, 0x3350, 0x0000, 0xffff, | ||
"SMI", | ||
"SM3350 UFS-to-USB-Mass-Storage bridge", | ||
USB_SC_DEVICE, USB_PR_DEVICE, NULL, | ||
US_FL_BAD_SENSE ), | ||
|
||
/* | ||
* Reported by Paul Hartman <[email protected]> | ||
* This card reader returns "Illegal Request, Logical Block Address | ||
|