diff options
author | Felipe Balbi <balbi@ti.com> | 2012-05-22 10:24:11 +0300 |
---|---|---|
committer | Felipe Balbi <balbi@ti.com> | 2012-06-03 23:08:21 +0300 |
commit | a092532483e3200a53c8b1170b3988cc668c07ef (patch) | |
tree | 73bce826eb282853c3f4bcd30e219bd8adc6d362 | |
parent | 33b84c2c06d25a3321326d91438e106b4fd5ad9f (diff) | |
download | linux-3.10-a092532483e3200a53c8b1170b3988cc668c07ef.tar.gz linux-3.10-a092532483e3200a53c8b1170b3988cc668c07ef.tar.bz2 linux-3.10-a092532483e3200a53c8b1170b3988cc668c07ef.zip |
usb: dwc3: gadget: remove trailing semicolon
That semicolon doesn't do anything, it's not
needed and should be removed.
Signed-off-by: Felipe Balbi <balbi@ti.com>
-rw-r--r-- | drivers/usb/dwc3/gadget.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/usb/dwc3/gadget.c b/drivers/usb/dwc3/gadget.c index 3df1a1973b0..045799356a2 100644 --- a/drivers/usb/dwc3/gadget.c +++ b/drivers/usb/dwc3/gadget.c @@ -1032,7 +1032,7 @@ static int __dwc3_gadget_ep_queue(struct dwc3_ep *dep, struct dwc3_request *req) dev_dbg(dwc->dev, "%s: failed to kick transfers\n", dep->name); } - }; + } return 0; } |