]> git.kernelconcepts.de Git - karo-tx-linux.git/commitdiff
imx21-hcd: use HUB_CHAR_*
authorSergei Shtylyov <sergei.shtylyov@cogentembedded.com>
Sun, 18 Jan 2015 22:31:41 +0000 (01:31 +0300)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Sun, 25 Jan 2015 13:01:12 +0000 (21:01 +0800)
Fix  using the  bare numbers to set the 'wHubCharacteristics' field of the Hub
Descriptor while the values are #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/imx21-hcd.c

index eb4efba9f1ad8ba280b77e636fe4b3bcea4fe376..6a2ad550b1205f84e44477de15b1eb47ccf78086 100644 (file)
@@ -1482,9 +1482,8 @@ static int get_hub_descriptor(struct usb_hcd *hcd,
        desc->bDescLength = 9;
        desc->bPwrOn2PwrGood = 0;
        desc->wHubCharacteristics = (__force __u16) cpu_to_le16(
-               0x0002 |        /* No power switching */
-               0x0010 |        /* No over current protection */
-               0);
+               HUB_CHAR_NO_LPSM |      /* No power switching */
+               HUB_CHAR_NO_OCPM);      /* No over current protection */
 
        desc->u.hs.DeviceRemovable[0] = 1 << 1;
        desc->u.hs.DeviceRemovable[1] = ~0;