Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

storage: Add quirk for another SCM-based USB-SCSI converter

There is apparently another SCM USB-SCSI converter with ID 04E6:000F. It
is listed along with 04E6:000B in the Windows INF file for the Startech
ICUSBSCSI2 as "eUSB SCSI Adapter (Bus Powered)". The quirk allows
devices with SCSI ID other than 0 to be accessed.

Also make a couple of existing SCM product IDs lower case to be
consistent with other entries.

Signed-off-by: Mark Knibbs <markk@clara.co.uk>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>

authored by

Mark Knibbs and committed by
Greg Kroah-Hartman
3512e7bf 57cde01a

+8 -2
+8 -2
drivers/usb/storage/unusual_devs.h
··· 492 492 "eUSB CompactFlash Adapter", 493 493 USB_SC_8020, USB_PR_CB, NULL, 0), 494 494 495 - UNUSUAL_DEV( 0x04e6, 0x000B, 0x0100, 0x0100, 495 + UNUSUAL_DEV( 0x04e6, 0x000b, 0x0100, 0x0100, 496 496 "Shuttle", 497 497 "eUSCSI Bridge", 498 498 USB_SC_SCSI, USB_PR_BULK, usb_stor_euscsi_init, 499 499 US_FL_SCM_MULT_TARG ), 500 500 501 - UNUSUAL_DEV( 0x04e6, 0x000C, 0x0100, 0x0100, 501 + UNUSUAL_DEV( 0x04e6, 0x000c, 0x0100, 0x0100, 502 502 "Shuttle", 503 503 "eUSCSI Bridge", 504 504 USB_SC_SCSI, USB_PR_BULK, usb_stor_euscsi_init, 505 + US_FL_SCM_MULT_TARG ), 506 + 507 + UNUSUAL_DEV( 0x04e6, 0x000f, 0x0000, 0x9999, 508 + "SCM Microsystems", 509 + "eUSB SCSI Adapter (Bus Powered)", 510 + USB_SC_DEVICE, USB_PR_DEVICE, usb_stor_euscsi_init, 505 511 US_FL_SCM_MULT_TARG ), 506 512 507 513 UNUSUAL_DEV( 0x04e6, 0x0101, 0x0200, 0x0200,