]> git.ipfire.org Git - thirdparty/kernel/stable.git/commitdiff
USB: quirks: Fix entries on wrong list in 3.16.y
authorBen Hutchings <ben@decadent.org.uk>
Mon, 1 Aug 2016 20:12:27 +0000 (21:12 +0100)
committerBen Hutchings <ben@decadent.org.uk>
Mon, 22 Aug 2016 21:38:12 +0000 (22:38 +0100)
Commits ddbe1fca0bcb ("USB: Add device quirk for ASUS T100 Base
Station keyboard") and e5dff0e80463 ("USB: Add OTG PET device to TPL")
were wrongly backported to 3.16.y.  The original commits added to
usb_quirk_list but the backported versions added to
usb_interface_quirk_list.

Signed-off-by: Ben Hutchings <ben@decadent.org.uk>
drivers/usb/core/quirks.c

index 0e8e656a045f6b90766729f42fbe3cac8440b1b0..6b53fc3ec636ab6c86670b56207155428a68623a 100644 (file)
@@ -188,6 +188,14 @@ static const struct usb_device_id usb_quirk_list[] = {
        /* USB3503 */
        { USB_DEVICE(0x0424, 0x3503), .driver_info = USB_QUIRK_RESET_RESUME },
 
+       /* ASUS Base Station(T100) */
+       { USB_DEVICE(0x0b05, 0x17e0), .driver_info =
+                       USB_QUIRK_IGNORE_REMOTE_WAKEUP },
+
+       /* Protocol and OTG Electrical Test Device */
+       { USB_DEVICE(0x1a0a, 0x0200), .driver_info =
+                       USB_QUIRK_LINEAR_UFRAME_INTR_BINTERVAL },
+
        /* Blackmagic Design Intensity Shuttle */
        { USB_DEVICE(0x1edb, 0xbd3b), .driver_info = USB_QUIRK_NO_LPM },
 
@@ -202,14 +210,6 @@ static const struct usb_device_id usb_interface_quirk_list[] = {
        { USB_VENDOR_AND_INTERFACE_INFO(0x046d, USB_CLASS_VIDEO, 1, 0),
          .driver_info = USB_QUIRK_RESET_RESUME },
 
-       /* ASUS Base Station(T100) */
-       { USB_DEVICE(0x0b05, 0x17e0), .driver_info =
-                       USB_QUIRK_IGNORE_REMOTE_WAKEUP },
-
-       /* Protocol and OTG Electrical Test Device */
-       { USB_DEVICE(0x1a0a, 0x0200), .driver_info =
-                       USB_QUIRK_LINEAR_UFRAME_INTR_BINTERVAL },
-
        { }  /* terminating entry must be last */
 };