mirror of
https://github.com/hardkernel/linux.git
synced 2026-06-08 11:50:43 +09:00
usb: host: xhci-dbg: HCIVERSION should be a binary number
commitf95e60a7dbupstream. According to xHCI spec, HCIVERSION containing a BCD encoding of the xHCI specification revision number, 0100h corresponds to xHCI version 1.0. Change "100" as "0x100". Cc: Lu Baolu <baolu.lu@linux.intel.com> Fixes:04abb6de28("xhci: Read and parse new xhci 1.1 capability register") Signed-off-by: Peter Chen <peter.chen@nxp.com> Signed-off-by: Mathias Nyman <mathias.nyman@linux.intel.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
committed by
Greg Kroah-Hartman
parent
03123df08e
commit
d863767907
@@ -111,7 +111,7 @@ static void xhci_print_cap_regs(struct xhci_hcd *xhci)
|
|||||||
xhci_dbg(xhci, "RTSOFF 0x%x:\n", temp & RTSOFF_MASK);
|
xhci_dbg(xhci, "RTSOFF 0x%x:\n", temp & RTSOFF_MASK);
|
||||||
|
|
||||||
/* xhci 1.1 controllers have the HCCPARAMS2 register */
|
/* xhci 1.1 controllers have the HCCPARAMS2 register */
|
||||||
if (hci_version > 100) {
|
if (hci_version > 0x100) {
|
||||||
temp = readl(&xhci->cap_regs->hcc_params2);
|
temp = readl(&xhci->cap_regs->hcc_params2);
|
||||||
xhci_dbg(xhci, "HCC PARAMS2 0x%x:\n", (unsigned int) temp);
|
xhci_dbg(xhci, "HCC PARAMS2 0x%x:\n", (unsigned int) temp);
|
||||||
xhci_dbg(xhci, " HC %s Force save context capability",
|
xhci_dbg(xhci, " HC %s Force save context capability",
|
||||||
|
|||||||
Reference in New Issue
Block a user