renesas_usbhs: mod_host: use HUB_CHAR_*
authorSergei Shtylyov <sergei.shtylyov@cogentembedded.com>
Sun, 18 Jan 2015 22:59:09 +0000 (01:59 +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/renesas_usbhs/mod_host.c

index f0d323125871806f682e4b647e432f816f4c4712..96eead6192821f183c47331ae53c8d5a248d75c6 100644 (file)
@@ -1234,7 +1234,8 @@ static int __usbhsh_hub_get_status(struct usbhsh_hpriv *hpriv,
                desc->bNbrPorts                 = roothub_id;
                desc->bDescLength               = 9;
                desc->bPwrOn2PwrGood            = 0;
-               desc->wHubCharacteristics       = cpu_to_le16(0x0011);
+               desc->wHubCharacteristics       =
+                       cpu_to_le16(HUB_CHAR_INDV_PORT_LPSM | HUB_CHAR_NO_OCPM);
                desc->u.hs.DeviceRemovable[0]   = (roothub_id << 1);
                desc->u.hs.DeviceRemovable[1]   = ~0;
                dev_dbg(dev, "%s :: GetHubDescriptor\n", __func__);