mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2025-03-19 21:10:53 +07:00
usb: dwc3: ep0: fix debug output
Use "ep0in" and "ep0out" instead "ep1in" and "ep0out" which is confusing and not consistent with the remaining output. Signed-off-by: Sebastian Andrzej Siewior <bigeasy@linutronix.de> Signed-off-by: Felipe Balbi <balbi@ti.com> Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
This commit is contained in:
parent
9876cbe2e2
commit
b147f3572d
@ -785,7 +785,7 @@ void dwc3_ep0_interrupt(struct dwc3 *dwc,
|
|||||||
|
|
||||||
dev_dbg(dwc->dev, "%s while ep%d%s in state '%s'\n",
|
dev_dbg(dwc->dev, "%s while ep%d%s in state '%s'\n",
|
||||||
dwc3_ep_event_string(event->endpoint_event),
|
dwc3_ep_event_string(event->endpoint_event),
|
||||||
epnum, (epnum & 1) ? "in" : "out",
|
epnum >> 1, (epnum & 1) ? "in" : "out",
|
||||||
dwc3_ep0_state_string(dwc->ep0state));
|
dwc3_ep0_state_string(dwc->ep0state));
|
||||||
|
|
||||||
switch (event->endpoint_event) {
|
switch (event->endpoint_event) {
|
||||||
|
Loading…
Reference in New Issue
Block a user