mirror of
https://github.com/torvalds/linux.git
synced 2026-05-23 06:31:58 +02:00
usb: dwc3: debug: fix ep name on trace output
There was a typo when generating endpoint name which would be very confusing when debugging. Fix it. Signed-off-by: Felipe Balbi <felipe.balbi@linux.intel.com>
This commit is contained in:
parent
23fd537c95
commit
696fe69d7e
|
|
@ -192,7 +192,7 @@ dwc3_ep_event_string(const struct dwc3_event_depevt *event)
|
|||
int ret;
|
||||
|
||||
ret = sprintf(str, "ep%d%s: ", epnum >> 1,
|
||||
(epnum & 1) ? "in" : "in");
|
||||
(epnum & 1) ? "in" : "out");
|
||||
if (ret < 0)
|
||||
return "UNKNOWN";
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user