diff options
author | Sergei Shtylyov <sergei.shtylyov@cogentembedded.com> | 2015-03-28 18:39:09 -0400 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2015-04-03 13:03:16 -0400 |
commit | 2569ffd58b03d900f53b073054df4dc45ca67873 (patch) | |
tree | 6627426adf81030558f1816d20c23714d10cd1a1 | |
parent | 1cf6563b3e9ecdfd8378fb81484632f715607a04 (diff) |
dummy_hcd: use USB_DT[_SS]_HUB
Fix using the bare numbers to set the 'bDescriptorType' field of the Hub
Descriptors 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>
-rw-r--r-- | drivers/usb/gadget/udc/dummy_hcd.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/usb/gadget/udc/dummy_hcd.c b/drivers/usb/gadget/udc/dummy_hcd.c index 7592db7824c6..181112c88f43 100644 --- a/drivers/usb/gadget/udc/dummy_hcd.c +++ b/drivers/usb/gadget/udc/dummy_hcd.c | |||
@@ -1923,7 +1923,7 @@ static inline void | |||
1923 | ss_hub_descriptor(struct usb_hub_descriptor *desc) | 1923 | ss_hub_descriptor(struct usb_hub_descriptor *desc) |
1924 | { | 1924 | { |
1925 | memset(desc, 0, sizeof *desc); | 1925 | memset(desc, 0, sizeof *desc); |
1926 | desc->bDescriptorType = 0x2a; | 1926 | desc->bDescriptorType = USB_DT_SS_HUB; |
1927 | desc->bDescLength = 12; | 1927 | desc->bDescLength = 12; |
1928 | desc->wHubCharacteristics = cpu_to_le16( | 1928 | desc->wHubCharacteristics = cpu_to_le16( |
1929 | HUB_CHAR_INDV_PORT_LPSM | | 1929 | HUB_CHAR_INDV_PORT_LPSM | |
@@ -1936,7 +1936,7 @@ ss_hub_descriptor(struct usb_hub_descriptor *desc) | |||
1936 | static inline void hub_descriptor(struct usb_hub_descriptor *desc) | 1936 | static inline void hub_descriptor(struct usb_hub_descriptor *desc) |
1937 | { | 1937 | { |
1938 | memset(desc, 0, sizeof *desc); | 1938 | memset(desc, 0, sizeof *desc); |
1939 | desc->bDescriptorType = 0x29; | 1939 | desc->bDescriptorType = USB_DT_HUB; |
1940 | desc->bDescLength = 9; | 1940 | desc->bDescLength = 9; |
1941 | desc->wHubCharacteristics = cpu_to_le16( | 1941 | desc->wHubCharacteristics = cpu_to_le16( |
1942 | HUB_CHAR_INDV_PORT_LPSM | | 1942 | HUB_CHAR_INDV_PORT_LPSM | |