]> git.kernelconcepts.de Git - karo-tx-linux.git/commitdiff
max3421-hcd: use USB_DT_HUB
authorSergei Shtylyov <sergei.shtylyov@cogentembedded.com>
Sat, 28 Mar 2015 22:14:03 +0000 (01:14 +0300)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Fri, 3 Apr 2015 17:03:18 +0000 (19:03 +0200)
Fix  using the  bare number to set the 'bDescriptorType' field of the Hub
Descriptor while the value  is #define'd in <linux/usb/ch11.h>.

Signed-off-by: Sergei Shtylyov <sergei.shtylyov@cogentembedded.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/usb/host/max3421-hcd.c

index a98833cbfcf311193d420230de40f4a816b41b6b..fc1fd403973a8aa992ad7b61a88efe5dd301143d 100644 (file)
@@ -1659,7 +1659,7 @@ hub_descriptor(struct usb_hub_descriptor *desc)
        /*
         * See Table 11-13: Hub Descriptor in USB 2.0 spec.
         */
-       desc->bDescriptorType = 0x29;   /* hub descriptor */
+       desc->bDescriptorType = USB_DT_HUB; /* hub descriptor */
        desc->bDescLength = 9;
        desc->wHubCharacteristics = cpu_to_le16(HUB_CHAR_INDV_PORT_LPSM |
                                                HUB_CHAR_COMMON_OCPM);