aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/usb/host/xhci-hub.c
diff options
context:
space:
mode:
Diffstat (limited to 'drivers/usb/host/xhci-hub.c')
-rw-r--r--drivers/usb/host/xhci-hub.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/drivers/usb/host/xhci-hub.c b/drivers/usb/host/xhci-hub.c
index 1ab7f2e2c05f..f3bafba4b5c6 100644
--- a/drivers/usb/host/xhci-hub.c
+++ b/drivers/usb/host/xhci-hub.c
@@ -361,6 +361,10 @@ static void xhci_clear_port_change_bit(struct xhci_hcd *xhci, u16 wValue,
361 status = PORT_PLC; 361 status = PORT_PLC;
362 port_change_bit = "suspend/resume"; 362 port_change_bit = "suspend/resume";
363 break; 363 break;
364 case USB_PORT_FEAT_C_PORT_LINK_STATE:
365 status = PORT_PLC;
366 port_change_bit = "link state";
367 break;
364 default: 368 default:
365 /* Should never happen */ 369 /* Should never happen */
366 return; 370 return;
@@ -639,6 +643,7 @@ int xhci_hub_control(struct usb_hcd *hcd, u16 typeReq, u16 wValue,
639 case USB_PORT_FEAT_C_CONNECTION: 643 case USB_PORT_FEAT_C_CONNECTION:
640 case USB_PORT_FEAT_C_OVER_CURRENT: 644 case USB_PORT_FEAT_C_OVER_CURRENT:
641 case USB_PORT_FEAT_C_ENABLE: 645 case USB_PORT_FEAT_C_ENABLE:
646 case USB_PORT_FEAT_C_PORT_LINK_STATE:
642 xhci_clear_port_change_bit(xhci, wValue, wIndex, 647 xhci_clear_port_change_bit(xhci, wValue, wIndex,
643 port_array[wIndex], temp); 648 port_array[wIndex], temp);
644 break; 649 break;