* The scope of the USR-61S2B unusual_dev entry was tightened, but too

strictly. Loosen it to apply to additional devices with a smaller bcd.
  (closes: #396375)

svn path=/dists/trunk/linux-2.6/; revision=7809
This commit is contained in:
dann frazier 2006-11-17 19:31:44 +00:00
parent 6fe6215791
commit 3ebf9b8da0
3 changed files with 37 additions and 1 deletions

7
debian/changelog vendored
View File

@ -41,7 +41,12 @@ linux-2.6 (2.6.18-6) UNRELEASED; urgency=low
[ Thiemo Seufer ]
* Enable raid456 for mips/mipsel qemu kernel.
-- maximilian attems <maks@sternwelten.at> Tue, 14 Nov 2006 10:20:32 +0100
[ dann frazier ]
* The scope of the USR-61S2B unusual_dev entry was tightened, but too
strictly. Loosen it to apply to additional devices with a smaller bcd.
(closes: #396375)
-- dann frazier <dannf@debian.org> Fri, 17 Nov 2006 12:28:17 -0700
linux-2.6 (2.6.18-5) unstable; urgency=low

View File

@ -0,0 +1,30 @@
From: Phil Dibowitz <phil@ipom.com>
Date: Fri, 3 Nov 2006 07:14:10 +0000 (-0800)
Subject: USB: Fix UCR-61S2B unusual_dev entry
X-Git-Url: http://www.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commitdiff;h=51b5bce8c253b82d4789161cc3b0c74bee313bb1
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>
---
--- a/drivers/usb/storage/unusual_devs.h
+++ b/drivers/usb/storage/unusual_devs.h
@@ -1323,8 +1323,10 @@ UNUSUAL_DEV( 0x0fce, 0xe030, 0x0000, 0x
/* Reported by Kevin Cernekee <kpc-usbdev@gelato.uiuc.edu>
* Tested on hardware version 1.10.
* Entry is needed only for the initializer function override.
+ * Devices with bcd > 110 seem to not need it while those
+ * with bcd < 110 appear to need it.
*/
-UNUSUAL_DEV( 0x1019, 0x0c55, 0x0110, 0x0110,
+UNUSUAL_DEV( 0x1019, 0x0c55, 0x0000, 0x0110,
"Desknote",
"UCR-61S2B",
US_SC_DEVICE, US_PR_DEVICE, usb_stor_ucr61s2b_init,

View File

@ -18,3 +18,4 @@
+ bugfix/scsi-SG_IO-data-direction.patch
+ bugfix/arm/versatile-pci.patch
+ bugfix/arm/nslu2-disk-leds.patch
+ bugfix/UCR-61S2B-unusual_dev-update.patch