diff options
author | Cyril Roelandt <tipecaml@gmail.com> | 2012-02-24 20:14:59 -0500 |
---|---|---|
committer | Felipe Balbi <balbi@ti.com> | 2012-02-27 09:33:37 -0500 |
commit | 1435db486c131b4b76d8e2a261ae6292ffc3f7ca (patch) | |
tree | 473c7a44fff7073e93903db7fb22ebe6d05eb2f0 /drivers/usb/gadget | |
parent | 5647a149e2b9260530a11c8494b529de56e226ab (diff) |
usb: amd5536udc: Fix indentation
Remove an unnecessary level of indentation.
Signed-off-by: Cyril Roelandt <tipecaml@gmail.com>
Signed-off-by: Felipe Balbi <balbi@ti.com>
Diffstat (limited to 'drivers/usb/gadget')
-rw-r--r-- | drivers/usb/gadget/amd5536udc.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/usb/gadget/amd5536udc.c b/drivers/usb/gadget/amd5536udc.c index 5e2cc0addb85..ad72ab72f041 100644 --- a/drivers/usb/gadget/amd5536udc.c +++ b/drivers/usb/gadget/amd5536udc.c | |||
@@ -2409,9 +2409,9 @@ static irqreturn_t udc_data_in_isr(struct udc *dev, int ep_ix) | |||
2409 | /* write fifo */ | 2409 | /* write fifo */ |
2410 | udc_txfifo_write(ep, &req->req); | 2410 | udc_txfifo_write(ep, &req->req); |
2411 | len = req->req.length - req->req.actual; | 2411 | len = req->req.length - req->req.actual; |
2412 | if (len > ep->ep.maxpacket) | 2412 | if (len > ep->ep.maxpacket) |
2413 | len = ep->ep.maxpacket; | 2413 | len = ep->ep.maxpacket; |
2414 | req->req.actual += len; | 2414 | req->req.actual += len; |
2415 | if (req->req.actual == req->req.length | 2415 | if (req->req.actual == req->req.length |
2416 | || (len != ep->ep.maxpacket)) { | 2416 | || (len != ep->ep.maxpacket)) { |
2417 | /* complete req */ | 2417 | /* complete req */ |