summaryrefslogtreecommitdiffstats
path: root/drivers/usb/host/sl811-hcd.c
diff options
context:
space:
mode:
authorSergei Shtylyov2015-01-18 23:48:21 +0100
committerGreg Kroah-Hartman2015-01-25 14:01:13 +0100
commitc25af1d67f67fb05b494351d31b7cf6d67174872 (patch)
tree6bacf6d186aec7afce579a386ac88d491481b9de /drivers/usb/host/sl811-hcd.c
parentr8a66597-hcd: use HUB_CHAR_* (diff)
downloadkernel-qcow2-linux-c25af1d67f67fb05b494351d31b7cf6d67174872.tar.gz
kernel-qcow2-linux-c25af1d67f67fb05b494351d31b7cf6d67174872.tar.xz
kernel-qcow2-linux-c25af1d67f67fb05b494351d31b7cf6d67174872.zip
sl811-hcd: use HUB_CHAR_*
Fix using the bare numbers 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>
Diffstat (limited to 'drivers/usb/host/sl811-hcd.c')
-rw-r--r--drivers/usb/host/sl811-hcd.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/usb/host/sl811-hcd.c b/drivers/usb/host/sl811-hcd.c
index cef3140ffd8a..4f4ba1ea9e9b 100644
--- a/drivers/usb/host/sl811-hcd.c
+++ b/drivers/usb/host/sl811-hcd.c
@@ -1103,12 +1103,12 @@ sl811h_hub_descriptor (
desc->bPwrOn2PwrGood = sl811->board->potpg;
if (!desc->bPwrOn2PwrGood)
desc->bPwrOn2PwrGood = 10;
- temp = 0x0001;
+ temp = HUB_CHAR_INDV_PORT_LPSM;
} else
- temp = 0x0002;
+ temp = HUB_CHAR_NO_LPSM;
/* no overcurrent errors detection/handling */
- temp |= 0x0010;
+ temp |= HUB_CHAR_NO_OCPM;
desc->wHubCharacteristics = cpu_to_le16(temp);