usb: dwc3: gadget: fix trace output when command fails
authorFelipe Balbi <felipe.balbi@linux.intel.com>
Mon, 23 May 2016 10:50:29 +0000 (13:50 +0300)
committerFelipe Balbi <felipe.balbi@linux.intel.com>
Mon, 20 Jun 2016 09:32:40 +0000 (12:32 +0300)
We don't need the extra %s when command fails.
Let's remove it

Signed-off-by: Felipe Balbi <felipe.balbi@linux.intel.com>
drivers/usb/dwc3/gadget.c

index 05818152555bbb1d7e7671429dff0115e5ef72b5..e553a7c4d7373c1c4e2dd1332e273fd1a6f8eaae 100644 (file)
@@ -303,7 +303,7 @@ int dwc3_send_gadget_ep_cmd(struct dwc3_ep *dep, unsigned cmd,
                                ret = 0;
                                break;
                        case DEPEVT_TRANSFER_NO_RESOURCE:
-                               dwc3_trace(trace_dwc3_gadget, "%s: no resource available");
+                               dwc3_trace(trace_dwc3_gadget, "no resource available");
                                ret = -EINVAL;
                                break;
                        case DEPEVT_TRANSFER_BUS_EXPIRY:
@@ -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
                                 * the case by returning -EAGAIN.
                                 */
-                               dwc3_trace(trace_dwc3_gadget, "%s: bus expiry");
+                               dwc3_trace(trace_dwc3_gadget, "bus expiry");
                                ret = -EAGAIN;
                                break;
                        default: