]> git.kernelconcepts.de Git - karo-tx-linux.git/commitdiff
dwc2: hcd: use HUB_CHAR_*
authorSergei Shtylyov <sergei.shtylyov@cogentembedded.com>
Sun, 18 Jan 2015 22:54:15 +0000 (01:54 +0300)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Sun, 25 Jan 2015 13:02:32 +0000 (21:02 +0800)
Fix  using the  bare number  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/dwc2/hcd.c

index a0cd9db6f4cd0e7e9a655527711ca488ef8a971e..c5fd43d2513f0e3922f690f026ffe412cbec8992 100644 (file)
@@ -1622,7 +1622,9 @@ static int dwc2_hcd_hub_control(struct dwc2_hsotg *hsotg, u16 typereq,
                hub_desc->bDescLength = 9;
                hub_desc->bDescriptorType = 0x29;
                hub_desc->bNbrPorts = 1;
-               hub_desc->wHubCharacteristics = cpu_to_le16(0x08);
+               hub_desc->wHubCharacteristics =
+                       cpu_to_le16(HUB_CHAR_COMMON_LPSM |
+                                   HUB_CHAR_INDV_PORT_OCPM);
                hub_desc->bPwrOn2PwrGood = 1;
                hub_desc->bHubContrCurrent = 0;
                hub_desc->u.hs.DeviceRemovable[0] = 0;