Skip to content

Commit b6a3ed6

Browse files
M-a-r-kgregkh
authored andcommitted
USB: storage: Add quirk for Ariston Technologies iConnect USB to SCSI adapter
Hi, The Ariston Technologies iConnect 025 and iConnect 050 (also known as e.g. iSCSI-50) are SCSI-USB converters which use Shuttle Technology/SCM Microsystems chips. Only the connectors differ; both have the same USB ID. The US_FL_SCM_MULT_TARG quirk is required to use SCSI devices with ID other than 0. I don't have one of these, but based on the other entries for Shuttle/ SCM-based converters this patch is very likely correct. I used 0x0000 and 0x9999 for bcdDeviceMin and bcdDeviceMax because I'm not sure which bcdDevice value the products use. Signed-off-by: Mark Knibbs <[email protected]> Cc: stable <[email protected]> Signed-off-by: Greg Kroah-Hartman <[email protected]>
1 parent 67d365a commit b6a3ed6

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

drivers/usb/storage/unusual_devs.h

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1992,6 +1992,12 @@ UNUSUAL_DEV( 0x177f, 0x0400, 0x0000, 0x0000,
19921992
USB_SC_DEVICE, USB_PR_DEVICE, NULL,
19931993
US_FL_BULK_IGNORE_TAG | US_FL_MAX_SECTORS_64 ),
19941994

1995+
UNUSUAL_DEV( 0x1822, 0x0001, 0x0000, 0x9999,
1996+
"Ariston Technologies",
1997+
"iConnect USB to SCSI adapter",
1998+
USB_SC_DEVICE, USB_PR_DEVICE, usb_stor_euscsi_init,
1999+
US_FL_SCM_MULT_TARG ),
2000+
19952001
/* Reported by Hans de Goede <[email protected]>
19962002
* These Appotech controllers are found in Picture Frames, they provide a
19972003
* (buggy) emulation of a cdrom drive which contains the windows software

0 commit comments

Comments
 (0)