aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/usb/host
diff options
context:
space:
mode:
authorSergei Shtylyov <sergei.shtylyov@cogentembedded.com>2015-03-28 18:03:03 -0400
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2015-04-03 13:03:19 -0400
commit625a4c5910cc8aa63da2afcf662aeb2ca64458e1 (patch)
treec212e270c0c0d7f11fe344841830b3594132606c /drivers/usb/host
parent51a114bc5d20d6540418bc40422a9631cfa73da8 (diff)
ehci-hub: 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/host')
-rw-r--r--drivers/usb/host/ehci-hub.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/usb/host/ehci-hub.c b/drivers/usb/host/ehci-hub.c
index 87cf86f38b36..d7b4b511b5c6 100644
--- a/drivers/usb/host/ehci-hub.c
+++ b/drivers/usb/host/ehci-hub.c
@@ -688,7 +688,7 @@ ehci_hub_descriptor (
688 int ports = HCS_N_PORTS (ehci->hcs_params); 688 int ports = HCS_N_PORTS (ehci->hcs_params);
689 u16 temp; 689 u16 temp;
690 690
691 desc->bDescriptorType = 0x29; 691 desc->bDescriptorType = USB_DT_HUB;
692 desc->bPwrOn2PwrGood = 10; /* ehci 1.0, 2.3.9 says 20ms max */ 692 desc->bPwrOn2PwrGood = 10; /* ehci 1.0, 2.3.9 says 20ms max */
693 desc->bHubContrCurrent = 0; 693 desc->bHubContrCurrent = 0;
694 694