diff options
Diffstat (limited to 'drivers/usb/storage')
| -rw-r--r-- | drivers/usb/storage/uas-detect.h | 4 | ||||
| -rw-r--r-- | drivers/usb/storage/unusual_devs.h | 7 | ||||
| -rw-r--r-- | drivers/usb/storage/unusual_uas.h | 7 | 
3 files changed, 18 insertions, 0 deletions
| diff --git a/drivers/usb/storage/uas-detect.h b/drivers/usb/storage/uas-detect.h index 1fcd758a961f..3734a25e09e5 100644 --- a/drivers/usb/storage/uas-detect.h +++ b/drivers/usb/storage/uas-detect.h @@ -112,6 +112,10 @@ static int uas_use_uas_driver(struct usb_interface *intf,  		}  	} +	/* All Seagate disk enclosures have broken ATA pass-through support */ +	if (le16_to_cpu(udev->descriptor.idVendor) == 0x0bc2) +		flags |= US_FL_NO_ATA_1X; +  	usb_stor_adjust_quirks(udev, &flags);  	if (flags & US_FL_IGNORE_UAS) { diff --git a/drivers/usb/storage/unusual_devs.h b/drivers/usb/storage/unusual_devs.h index 2968046e7c05..f72d045ee9ef 100644 --- a/drivers/usb/storage/unusual_devs.h +++ b/drivers/usb/storage/unusual_devs.h @@ -2100,6 +2100,13 @@ UNUSUAL_DEV(  0x152d, 0x0567, 0x0114, 0x0116,  		USB_SC_DEVICE, USB_PR_DEVICE, NULL,  		US_FL_BROKEN_FUA ), +/* Reported by David Kozub <[email protected]> */ +UNUSUAL_DEV(0x152d, 0x0578, 0x0000, 0x9999, +		"JMicron", +		"JMS567", +		USB_SC_DEVICE, USB_PR_DEVICE, NULL, +		US_FL_BROKEN_FUA), +  /*   * Reported by Alexandre Oliva <[email protected]>   * JMicron responds to USN and several other SCSI ioctls with a diff --git a/drivers/usb/storage/unusual_uas.h b/drivers/usb/storage/unusual_uas.h index d520374a824e..e6127fb21c12 100644 --- a/drivers/usb/storage/unusual_uas.h +++ b/drivers/usb/storage/unusual_uas.h @@ -129,6 +129,13 @@ UNUSUAL_DEV(0x152d, 0x0567, 0x0000, 0x9999,  		USB_SC_DEVICE, USB_PR_DEVICE, NULL,  		US_FL_BROKEN_FUA | US_FL_NO_REPORT_OPCODES), +/* Reported-by: David Kozub <[email protected]> */ +UNUSUAL_DEV(0x152d, 0x0578, 0x0000, 0x9999, +		"JMicron", +		"JMS567", +		USB_SC_DEVICE, USB_PR_DEVICE, NULL, +		US_FL_BROKEN_FUA), +  /* Reported-by: Hans de Goede <[email protected]> */  UNUSUAL_DEV(0x2109, 0x0711, 0x0000, 0x9999,  		"VIA", |