forked from torvalds/linux
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[PATCH] USB Storage: Fix unusual_devs.h order
Alan Stern pointed out there was an ordering issue in unusual_devs.h, and this patch fixes it. Signed-off-by: Phil Dibowitz <[email protected]> Signed-off-by: Greg Kroah-Hartman <[email protected]>
- Loading branch information
Showing
1 changed file
with
7 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 |
---|---|---|
|
@@ -79,13 +79,6 @@ UNUSUAL_DEV( 0x03f0, 0x0307, 0x0001, 0x0001, | |
US_SC_8070, US_PR_USBAT, init_usbat, 0), | ||
#endif | ||
|
||
/* Patch submitted by Mihnea-Costin Grigore <[email protected]> */ | ||
UNUSUAL_DEV( 0x040d, 0x6205, 0x0003, 0x0003, | ||
"VIA Technologies Inc.", | ||
"USB 2.0 Card Reader", | ||
US_SC_DEVICE, US_PR_DEVICE, NULL, | ||
US_FL_IGNORE_RESIDUE ), | ||
|
||
/* Reported by Sebastian Kapfer <[email protected]> | ||
* and Olaf Hering <[email protected]> (different bcd's, same vendor/product) | ||
* for USB floppies that need the SINGLE_LUN enforcement. | ||
|
@@ -96,6 +89,13 @@ UNUSUAL_DEV( 0x0409, 0x0040, 0x0000, 0x9999, | |
US_SC_DEVICE, US_PR_DEVICE, NULL, | ||
US_FL_SINGLE_LUN ), | ||
|
||
/* Patch submitted by Mihnea-Costin Grigore <[email protected]> */ | ||
UNUSUAL_DEV( 0x040d, 0x6205, 0x0003, 0x0003, | ||
"VIA Technologies Inc.", | ||
"USB 2.0 Card Reader", | ||
US_SC_DEVICE, US_PR_DEVICE, NULL, | ||
US_FL_IGNORE_RESIDUE ), | ||
|
||
/* Deduced by Jonathan Woithe <[email protected]> | ||
* Entry needed for flags: US_FL_FIX_INQUIRY because initial inquiry message | ||
* always fails and confuses drive. | ||
|