diff options
author | Phil Dibowitz <phil@ipom.com> | 2006-11-03 02:14:10 -0500 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@suse.de> | 2006-11-16 17:26:11 -0500 |
commit | 51b5bce8c253b82d4789161cc3b0c74bee313bb1 (patch) | |
tree | 4238c426d8ea9b8eeab1f0112f03e4453ad4c6e9 /drivers/usb/storage | |
parent | fad14a0da885714c8610982045a6d04a4886865e (diff) |
USB: Fix UCR-61S2B unusual_dev entry
Recently this entry's bcd scope was narrowed so as not to falsly apply
to bcd's other than 0x0110. But while it breaks those of a larger bcd,
it is still needed for those of a smaller bcd - so this changes the
lower bcd limit to 0x0000.
Signed-off-by: Phil Dibowitz <phil@ipom.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
Diffstat (limited to 'drivers/usb/storage')
-rw-r--r-- | drivers/usb/storage/unusual_devs.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/drivers/usb/storage/unusual_devs.h b/drivers/usb/storage/unusual_devs.h index bc1ac07bf6ce..e87fb538b74c 100644 --- a/drivers/usb/storage/unusual_devs.h +++ b/drivers/usb/storage/unusual_devs.h | |||
@@ -1323,8 +1323,10 @@ UNUSUAL_DEV( 0x0fce, 0xe030, 0x0000, 0x0000, | |||
1323 | /* Reported by Kevin Cernekee <kpc-usbdev@gelato.uiuc.edu> | 1323 | /* Reported by Kevin Cernekee <kpc-usbdev@gelato.uiuc.edu> |
1324 | * Tested on hardware version 1.10. | 1324 | * Tested on hardware version 1.10. |
1325 | * Entry is needed only for the initializer function override. | 1325 | * Entry is needed only for the initializer function override. |
1326 | * Devices with bcd > 110 seem to not need it while those | ||
1327 | * with bcd < 110 appear to need it. | ||
1326 | */ | 1328 | */ |
1327 | UNUSUAL_DEV( 0x1019, 0x0c55, 0x0110, 0x0110, | 1329 | UNUSUAL_DEV( 0x1019, 0x0c55, 0x0000, 0x0110, |
1328 | "Desknote", | 1330 | "Desknote", |
1329 | "UCR-61S2B", | 1331 | "UCR-61S2B", |
1330 | US_SC_DEVICE, US_PR_DEVICE, usb_stor_ucr61s2b_init, | 1332 | US_SC_DEVICE, US_PR_DEVICE, usb_stor_ucr61s2b_init, |