diff options
author | Andrew Morton <akpm@osdl.org> | 2006-12-19 16:15:23 -0500 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@suse.de> | 2006-12-20 14:29:04 -0500 |
commit | a5176b78974451680bd93b8954230cf1a47dee1b (patch) | |
tree | 3a55310367cce42317d1e8ced65ac6a56b28c959 /drivers/usb | |
parent | df251b8bfcc5879b947223746779f90018424a6d (diff) |
[PATCH] USB: Nokia E70 is an unusual device
Taken from http://bugzilla.kernel.org/show_bug.cgi?id=7508
When the Nokia E70 Phone is plugged in to the USB port, I get:
end_request: I/O error, dev sda, sector 1824527
sd 0:0:0:0: SCSI error: return code = 0x10070000
end_request: I/O error, dev sda, sector 1824535
sd 0:0:0:0: SCSI error: return code = 0x10070000
The fix is to add these lines to drivers/usb/storage/unusual_devs.h:
Cc: <honkkis@gmail.com>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
Diffstat (limited to 'drivers/usb')
-rw-r--r-- | drivers/usb/storage/unusual_devs.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/drivers/usb/storage/unusual_devs.h b/drivers/usb/storage/unusual_devs.h index 5fe7ff441a09..f726b87c8fe4 100644 --- a/drivers/usb/storage/unusual_devs.h +++ b/drivers/usb/storage/unusual_devs.h | |||
@@ -160,6 +160,13 @@ UNUSUAL_DEV( 0x0421, 0x0433, 0x0100, 0x0100, | |||
160 | US_SC_DEVICE, US_PR_DEVICE, NULL, | 160 | US_SC_DEVICE, US_PR_DEVICE, NULL, |
161 | US_FL_IGNORE_RESIDUE | US_FL_FIX_CAPACITY ), | 161 | US_FL_IGNORE_RESIDUE | US_FL_FIX_CAPACITY ), |
162 | 162 | ||
163 | /* Reported by <honkkis@gmail.com> */ | ||
164 | UNUSUAL_DEV( 0x0421, 0x0433, 0x0100, 0x0100, | ||
165 | "Nokia", | ||
166 | "E70", | ||
167 | US_SC_DEVICE, US_PR_DEVICE, NULL, | ||
168 | US_FL_IGNORE_RESIDUE | US_FL_FIX_CAPACITY ), | ||
169 | |||
163 | /* Reported by Jon Hart <Jon.Hart@web.de> */ | 170 | /* Reported by Jon Hart <Jon.Hart@web.de> */ |
164 | UNUSUAL_DEV( 0x0421, 0x0434, 0x0100, 0x0100, | 171 | UNUSUAL_DEV( 0x0421, 0x0434, 0x0100, 0x0100, |
165 | "Nokia", | 172 | "Nokia", |