Commit ba159841 authored by Felipe Balbi's avatar Felipe Balbi

usb: dwc3: gadget: fix trace output when command fails

We don't need the extra %s when command fails.
Let's remove it
Signed-off-by: default avatarFelipe Balbi <felipe.balbi@linux.intel.com>
parent f75cacc4
...@@ -303,7 +303,7 @@ int dwc3_send_gadget_ep_cmd(struct dwc3_ep *dep, unsigned cmd, ...@@ -303,7 +303,7 @@ int dwc3_send_gadget_ep_cmd(struct dwc3_ep *dep, unsigned cmd,
ret = 0; ret = 0;
break; break;
case DEPEVT_TRANSFER_NO_RESOURCE: case DEPEVT_TRANSFER_NO_RESOURCE:
dwc3_trace(trace_dwc3_gadget, "%s: no resource available"); dwc3_trace(trace_dwc3_gadget, "no resource available");
ret = -EINVAL; ret = -EINVAL;
break; break;
case DEPEVT_TRANSFER_BUS_EXPIRY: case DEPEVT_TRANSFER_BUS_EXPIRY:
...@@ -318,7 +318,7 @@ int dwc3_send_gadget_ep_cmd(struct dwc3_ep *dep, unsigned cmd, ...@@ -318,7 +318,7 @@ int dwc3_send_gadget_ep_cmd(struct dwc3_ep *dep, unsigned cmd,
* give a hint to the gadget driver that this is * give a hint to the gadget driver that this is
* the case by returning -EAGAIN. * the case by returning -EAGAIN.
*/ */
dwc3_trace(trace_dwc3_gadget, "%s: bus expiry"); dwc3_trace(trace_dwc3_gadget, "bus expiry");
ret = -EAGAIN; ret = -EAGAIN;
break; break;
default: default:
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment