aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-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 (
1103 desc->bPwrOn2PwrGood = sl811->board->potpg; 1103 desc->bPwrOn2PwrGood = sl811->board->potpg;
1104 if (!desc->bPwrOn2PwrGood) 1104 if (!desc->bPwrOn2PwrGood)
1105 desc->bPwrOn2PwrGood = 10; 1105 desc->bPwrOn2PwrGood = 10;
1106 temp = 0x0001; 1106 temp = HUB_CHAR_INDV_PORT_LPSM;
1107 } else 1107 } else
1108 temp = 0x0002; 1108 temp = HUB_CHAR_NO_LPSM;
1109 1109
1110 /* no overcurrent errors detection/handling */ 1110 /* no overcurrent errors detection/handling */
1111 temp |= 0x0010; 1111 temp |= HUB_CHAR_NO_OCPM;
1112 1112
1113 desc->wHubCharacteristics = cpu_to_le16(temp); 1113 desc->wHubCharacteristics = cpu_to_le16(temp);
1114 1114