Message ID | 20200429103441.20107-1-oneukum@suse.com (mailing list archive) |
---|---|
State | Superseded |
Headers | show |
Series | [v2] UAS: add quirk for LaCie 2Big Quadra | expand |
On Wed, Apr 29, 2020 at 12:34:41PM +0200, Oliver Neukum wrote: > This device needs US_FL_NO_REPORT_OPCODES to avoid going > through prolonged error handling on enumeration. > > v2: correct sorting order > > Signed-off-by: Oliver Neukum <oneukum@suse.com> > Reported-by: Julian Groß <julian.g@posteo.de> > --- > drivers/usb/storage/unusual_uas.h | 7 +++++++ > 1 file changed, 7 insertions(+) > > diff --git a/drivers/usb/storage/unusual_uas.h b/drivers/usb/storage/unusual_uas.h > index cfdec74e0f4a..22aeb6a45e57 100644 > --- a/drivers/usb/storage/unusual_uas.h > +++ b/drivers/usb/storage/unusual_uas.h > @@ -45,6 +45,13 @@ UNUSUAL_DEV(0x0bc2, 0x331a, 0x0000, 0x9999, > USB_SC_DEVICE, USB_PR_DEVICE, NULL, > US_FL_NO_REPORT_LUNS), > > +/* Reported-by: Julian Groß <julian.g@posteo.de> */ > +UNUSUAL_DEV(0x059f, 0x105f, 0x0000, 0x9999, So 0x059f is greater than 0x0bc2? v3?
Am Mittwoch, den 29.04.2020, 13:18 +0200 schrieb Greg KH: > On Wed, Apr 29, 2020 at 12:34:41PM +0200, Oliver Neukum wrote: > > This device needs US_FL_NO_REPORT_OPCODES to avoid going > > through prolonged error handling on enumeration. > > > > v2: correct sorting order > > > > Signed-off-by: Oliver Neukum <oneukum@suse.com> > > Reported-by: Julian Groß <julian.g@posteo.de> > > --- > > drivers/usb/storage/unusual_uas.h | 7 +++++++ > > 1 file changed, 7 insertions(+) > > > > diff --git a/drivers/usb/storage/unusual_uas.h b/drivers/usb/storage/unusual_uas.h > > index cfdec74e0f4a..22aeb6a45e57 100644 > > --- a/drivers/usb/storage/unusual_uas.h > > +++ b/drivers/usb/storage/unusual_uas.h > > @@ -45,6 +45,13 @@ UNUSUAL_DEV(0x0bc2, 0x331a, 0x0000, 0x9999, > > USB_SC_DEVICE, USB_PR_DEVICE, NULL, > > US_FL_NO_REPORT_LUNS), > > > > +/* Reported-by: Julian Groß <julian.g@posteo.de> */ > > +UNUSUAL_DEV(0x059f, 0x105f, 0x0000, 0x9999, > > So 0x059f is greater than 0x0bc2? I need more sleep. On the way. Sorry Oliver
diff --git a/drivers/usb/storage/unusual_uas.h b/drivers/usb/storage/unusual_uas.h index cfdec74e0f4a..22aeb6a45e57 100644 --- a/drivers/usb/storage/unusual_uas.h +++ b/drivers/usb/storage/unusual_uas.h @@ -45,6 +45,13 @@ UNUSUAL_DEV(0x0bc2, 0x331a, 0x0000, 0x9999, USB_SC_DEVICE, USB_PR_DEVICE, NULL, US_FL_NO_REPORT_LUNS), +/* Reported-by: Julian Groß <julian.g@posteo.de> */ +UNUSUAL_DEV(0x059f, 0x105f, 0x0000, 0x9999, + "LaCie", + "2Big Quadra USB3", + USB_SC_DEVICE, USB_PR_DEVICE, NULL, + US_FL_NO_REPORT_OPCODES), + /* Reported-by: Benjamin Tissoires <benjamin.tissoires@redhat.com> */ UNUSUAL_DEV(0x13fd, 0x3940, 0x0000, 0x9999, "Initio Corporation",
This device needs US_FL_NO_REPORT_OPCODES to avoid going through prolonged error handling on enumeration. v2: correct sorting order Signed-off-by: Oliver Neukum <oneukum@suse.com> Reported-by: Julian Groß <julian.g@posteo.de> --- drivers/usb/storage/unusual_uas.h | 7 +++++++ 1 file changed, 7 insertions(+)