aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/usb
diff options
context:
space:
mode:
authorSergei Shtylyov <sergei.shtylyov@cogentembedded.com>2015-03-28 18:24:24 -0400
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2015-04-03 13:03:17 -0400
commit5e77beafb10e451b8370e8248b25207810110ed8 (patch)
tree6e944940c20c58f6709edad7026b472e33813780 /drivers/usb
parente283ef1549f7e9de198d1a8988eff97c9e42f878 (diff)
r8a66597-hcd: use USB_DT_HUB
Fix using the bare number to set the 'bDescriptorType' field of the Hub Descriptor while the value is #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>
Diffstat (limited to 'drivers/usb')
-rw-r--r--drivers/usb/host/r8a66597-hcd.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/usb/host/r8a66597-hcd.c b/drivers/usb/host/r8a66597-hcd.c
index bdc82fea0a1f..5cbaa9846ab9 100644
--- a/drivers/usb/host/r8a66597-hcd.c
+++ b/drivers/usb/host/r8a66597-hcd.c
@@ -2136,7 +2136,7 @@ static int r8a66597_hub_status_data(struct usb_hcd *hcd, char *buf)
2136static void r8a66597_hub_descriptor(struct r8a66597 *r8a66597, 2136static void r8a66597_hub_descriptor(struct r8a66597 *r8a66597,
2137 struct usb_hub_descriptor *desc) 2137 struct usb_hub_descriptor *desc)
2138{ 2138{
2139 desc->bDescriptorType = 0x29; 2139 desc->bDescriptorType = USB_DT_HUB;
2140 desc->bHubContrCurrent = 0; 2140 desc->bHubContrCurrent = 0;
2141 desc->bNbrPorts = r8a66597->max_root_hub; 2141 desc->bNbrPorts = r8a66597->max_root_hub;
2142 desc->bDescLength = 9; 2142 desc->bDescLength = 9;