aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/usb/host
diff options
context:
space:
mode:
authorSebastian Andrzej Siewior <bigeasy@linutronix.de>2011-09-13 19:41:10 -0400
committerGreg Kroah-Hartman <gregkh@suse.de>2011-09-20 15:33:49 -0400
commitd78265992425ccb5753db9c56d9703c91b963e4b (patch)
tree15123f4bc7c2dfd56559cbd4bba6165ebec70e94 /drivers/usb/host
parent45e1892e70b85d251b2e69f4122a04e509ebdf00 (diff)
usb/xhci: ignore xhci version while checking for the link quirk
instead of reading the xhci interface version each time _even_ if the quirk is not required, simply check if the quirk flag is set. This flag is only set of the module parameter is set and here is where I moved the version check to. Signed-off-by: Sebastian Andrzej Siewior <bigeasy@linutronix.de> Signed-off-by: Sarah Sharp <sarah.a.sharp@linux.intel.com> Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
Diffstat (limited to 'drivers/usb/host')
-rw-r--r--drivers/usb/host/xhci.c2
-rw-r--r--drivers/usb/host/xhci.h4
2 files changed, 2 insertions, 4 deletions
diff --git a/drivers/usb/host/xhci.c b/drivers/usb/host/xhci.c
index dd0dc15680b6..7583b24c3387 100644
--- a/drivers/usb/host/xhci.c
+++ b/drivers/usb/host/xhci.c
@@ -316,7 +316,7 @@ int xhci_init(struct usb_hcd *hcd)
316 316
317 xhci_dbg(xhci, "xhci_init\n"); 317 xhci_dbg(xhci, "xhci_init\n");
318 spin_lock_init(&xhci->lock); 318 spin_lock_init(&xhci->lock);
319 if (link_quirk) { 319 if (xhci->hci_version == 0x95 && link_quirk) {
320 xhci_dbg(xhci, "QUIRK: Not clearing Link TRB chain bits.\n"); 320 xhci_dbg(xhci, "QUIRK: Not clearing Link TRB chain bits.\n");
321 xhci->quirks |= XHCI_LINK_TRB_QUIRK; 321 xhci->quirks |= XHCI_LINK_TRB_QUIRK;
322 } else { 322 } else {
diff --git a/drivers/usb/host/xhci.h b/drivers/usb/host/xhci.h
index b224b20b0784..13f1c23ed19d 100644
--- a/drivers/usb/host/xhci.h
+++ b/drivers/usb/host/xhci.h
@@ -1526,9 +1526,7 @@ static inline void xhci_write_64(struct xhci_hcd *xhci,
1526 1526
1527static inline int xhci_link_trb_quirk(struct xhci_hcd *xhci) 1527static inline int xhci_link_trb_quirk(struct xhci_hcd *xhci)
1528{ 1528{
1529 u32 temp = xhci_readl(xhci, &xhci->cap_regs->hc_capbase); 1529 return xhci->quirks & XHCI_LINK_TRB_QUIRK;
1530 return ((HC_VERSION(temp) == 0x95) &&
1531 (xhci->quirks & XHCI_LINK_TRB_QUIRK));
1532} 1530}
1533 1531
1534/* xHCI debugging */ 1532/* xHCI debugging */