temp = xhci_readl(xhci, addr);xhci_dbg(xhci,"get port status, actual port %d status = 0x%x\n", wIndex, temp);/* wPortChange bits */if(temp & PORT_CSC) status |=1<< USB_PORT_FEAT_C_CONNECTION;if(temp & PORT_PEC) status |=1<< USB_PORT_FEAT_C_ENABLE;if((temp & PORT_OCC...
2 changes: 1 addition & 1 deletion 2 drivers/usb/host/xhci-dbg.c Original file line numberDiff line numberDiff line change @@ -111,7 +111,7 @@ static void xhci_print_cap_regs(struct xhci_hcd *xhci) xhci_dbg(xhci, "RTSOFF 0x%x:\n", temp & RTSOFF_MASK);...