]> git.kernelconcepts.de Git - karo-tx-linux.git/commitdiff
ohci-at91: use HUB_CHAR_*
authorSergei Shtylyov <sergei.shtylyov@cogentembedded.com>
Sun, 18 Jan 2015 22:39:44 +0000 (01:39 +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>.

While at it, stop setting already set HUB_CHAR_INDV_PORT_LPSM once again.

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

index dc9e4e61f1c8a69d1720f4df027cd43e444452f8..e95e41cf7378c722f3fdeceeed55bb9ffbadb100 100644 (file)
@@ -347,11 +347,13 @@ static int ohci_at91_hub_control(struct usb_hcd *hcd, u16 typeReq, u16 wValue,
                 */
 
                desc->wHubCharacteristics &= ~cpu_to_le16(HUB_CHAR_LPSM);
-               desc->wHubCharacteristics |= cpu_to_le16(0x0001);
+               desc->wHubCharacteristics |=
+                       cpu_to_le16(HUB_CHAR_INDV_PORT_LPSM);
 
                if (pdata->overcurrent_supported) {
                        desc->wHubCharacteristics &= ~cpu_to_le16(HUB_CHAR_OCPM);
-                       desc->wHubCharacteristics |=  cpu_to_le16(0x0008|0x0001);
+                       desc->wHubCharacteristics |=
+                               cpu_to_le16(HUB_CHAR_INDV_PORT_OCPM);
                }
 
                dev_dbg(hcd->self.controller, "wHubCharacteristics after 0x%04x\n",