projects
/
GitHub
/
LineageOS
/
android_kernel_motorola_exynos9610.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
a65a6f1
)
xHCI: correct to print the true HSEE of USBCMD
author
Alex He
<alex.he@amd.com>
Thu, 22 Mar 2012 07:06:59 +0000
(15:06 +0800)
committer
Sarah Sharp
<sarah.a.sharp@linux.intel.com>
Tue, 10 Apr 2012 22:21:52 +0000
(15:21 -0700)
Correct the print of HSEE of USBCMD in xhci-dbg.c.
Signed-off-by: Alex He <alex.he@amd.com>
Signed-off-by: Sarah Sharp <sarah.a.sharp@linux.intel.com>
drivers/usb/host/xhci-dbg.c
patch
|
blob
|
blame
|
history
diff --git
a/drivers/usb/host/xhci-dbg.c
b/drivers/usb/host/xhci-dbg.c
index e9b0f043455db2ccc7e09ecaf99a1fe2eaa7a6be..4b436f5a41711bc1a7747f3c7b187ff547c7acbd 100644
(file)
--- a/
drivers/usb/host/xhci-dbg.c
+++ b/
drivers/usb/host/xhci-dbg.c
@@
-119,7
+119,7
@@
static void xhci_print_command_reg(struct xhci_hcd *xhci)
xhci_dbg(xhci, " Event Interrupts %s\n",
(temp & CMD_EIE) ? "enabled " : "disabled");
xhci_dbg(xhci, " Host System Error Interrupts %s\n",
- (temp & CMD_EIE) ? "enabled " : "disabled");
+ (temp & CMD_
HS
EIE) ? "enabled " : "disabled");
xhci_dbg(xhci, " HC has %sfinished light reset\n",
(temp & CMD_LRESET) ? "not " : "");
}