summaryrefslogtreecommitdiffstats
path: root/drivers/usb/renesas_usbhs
diff options
context:
space:
mode:
authorSergei Shtylyov2015-01-18 23:59:09 +0100
committerFelipe Balbi2015-01-27 16:34:57 +0100
commit16eb1a67f3e6f8b90474b882fe210df229da7573 (patch)
tree00dc1272bb812b931e87dbd7ed72081614748ea1 /drivers/usb/renesas_usbhs
parentusb: musb: virthub: use HUB_CHAR_* (diff)
downloadkernel-qcow2-linux-16eb1a67f3e6f8b90474b882fe210df229da7573.tar.gz
kernel-qcow2-linux-16eb1a67f3e6f8b90474b882fe210df229da7573.tar.xz
kernel-qcow2-linux-16eb1a67f3e6f8b90474b882fe210df229da7573.zip
usb: renesas_usbhs: mod_host: use HUB_CHAR_*
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.shtylyov@cogentembedded.com> Signed-off-by: Felipe Balbi <balbi@ti.com>
Diffstat (limited to 'drivers/usb/renesas_usbhs')
-rw-r--r--drivers/usb/renesas_usbhs/mod_host.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/drivers/usb/renesas_usbhs/mod_host.c b/drivers/usb/renesas_usbhs/mod_host.c
index f0d323125871..96eead619282 100644
--- a/drivers/usb/renesas_usbhs/mod_host.c
+++ b/drivers/usb/renesas_usbhs/mod_host.c
@@ -1234,7 +1234,8 @@ static int __usbhsh_hub_get_status(struct usbhsh_hpriv *hpriv,
desc->bNbrPorts = roothub_id;
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] = (roothub_id << 1);
desc->u.hs.DeviceRemovable[1] = ~0;
dev_dbg(dev, "%s :: GetHubDescriptor\n", __func__);