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.shtyl...@cogentembedded.com>

---
 drivers/usb/host/r8a66597-hcd.c |    3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

Index: usb/drivers/usb/host/r8a66597-hcd.c
===================================================================
--- usb.orig/drivers/usb/host/r8a66597-hcd.c
+++ usb/drivers/usb/host/r8a66597-hcd.c
@@ -2141,7 +2141,8 @@ static void r8a66597_hub_descriptor(stru
        desc->bNbrPorts = r8a66597->max_root_hub;
        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] =
                ((1 << r8a66597->max_root_hub) - 1) << 1;
        desc->u.hs.DeviceRemovable[1] = ~0;

--
To unsubscribe from this list: send the line "unsubscribe linux-usb" in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Reply via email to