]> asedeno.scripts.mit.edu Git - linux.git/commitdiff
usb-storage: Don't bind to uas devices if the uas driver is enabled
authorHans de Goede <hdegoede@redhat.com>
Mon, 21 Oct 2013 08:40:48 +0000 (09:40 +0100)
committerSarah Sharp <sarah.a.sharp@linux.intel.com>
Tue, 4 Mar 2014 23:38:16 +0000 (15:38 -0800)
uas devices have 2 alternative settings on their usb-storage interface,
one for usb-storage and one for uas. Using the uas driver is preferred, so if
the uas driver is enabled, and the device has an uas alt setting, don't bind.

Signed-off-by: Hans de Goede <hdegoede@redhat.com>
Signed-off-by: Sarah Sharp <sarah.a.sharp@linux.intel.com>
drivers/usb/storage/unusual_devs.h
drivers/usb/storage/usb.c

index adbeb255616afd32d8dc9dcaa244bdafd6ed46c2..f4a82291894ab2964754ac6eb06b1c7dfb4b3978 100644 (file)
@@ -2086,6 +2086,11 @@ UNUSUAL_DEV( 0xed10, 0x7636, 0x0001, 0x0001,
                "Digital MP3 Audio Player",
                USB_SC_DEVICE, USB_PR_DEVICE, NULL, US_FL_NOT_LOCKABLE ),
 
+/* Unusual uas devices */
+#if IS_ENABLED(CONFIG_USB_UAS)
+#include "unusual_uas.h"
+#endif
+
 /* Control/Bulk transport for all SubClass values */
 USUAL_DEV(USB_SC_RBC, USB_PR_CB),
 USUAL_DEV(USB_SC_8020, USB_PR_CB),
index 1c0b89f2a138aa2046abf81a57affcac6b9300a3..388f567524d8173ad84ffb7bf1bc68f59170e72f 100644 (file)
 #include "sierra_ms.h"
 #include "option_ms.h"
 
+#if IS_ENABLED(CONFIG_USB_UAS)
+#include "uas-detect.h"
+#endif
+
 /* Some informational data */
 MODULE_AUTHOR("Matthew Dharm <mdharm-usb@one-eyed-alien.net>");
 MODULE_DESCRIPTION("USB Mass Storage driver for Linux");
@@ -1035,6 +1039,12 @@ static int storage_probe(struct usb_interface *intf,
        int result;
        int size;
 
+       /* If uas is enabled and this device can do uas then ignore it. */
+#if IS_ENABLED(CONFIG_USB_UAS)
+       if (uas_use_uas_driver(intf, id))
+               return -ENXIO;
+#endif
+
        /*
         * If the device isn't standard (is handled by a subdriver
         * module) then don't accept it.