diff options
author | Felipe Balbi <balbi@ti.com> | 2013-07-12 16:10:59 (GMT) |
---|---|---|
committer | Felipe Balbi <balbi@ti.com> | 2013-07-29 10:56:55 (GMT) |
commit | 9aa62ae4292a2450634345d79a7fa1461bf7b39c (patch) | |
tree | d5bd958b58b6e7b824e771da48f54f62a984b761 /drivers | |
parent | ff62d6b6727360ae73382213bc1ebac6cf5160d7 (diff) | |
download | linux-fsl-qoriq-9aa62ae4292a2450634345d79a7fa1461bf7b39c.tar.xz |
usb: dwc3: gadget: move direction setting up
no functional changes, just grouping dep
initialization.
Signed-off-by: Felipe Balbi <balbi@ti.com>
Diffstat (limited to 'drivers')
-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 c8d47c1..f5efa03 100644 --- a/drivers/usb/dwc3/gadget.c +++ b/drivers/usb/dwc3/gadget.c @@ -1642,13 +1642,13 @@ static int dwc3_gadget_init_hw_endpoints(struct dwc3 *dwc, dep->dwc = dwc; dep->number = epnum; + dep->direction = !!direction; dwc->eps[epnum] = dep; snprintf(dep->name, sizeof(dep->name), "ep%d%s", epnum >> 1, (epnum & 1) ? "in" : "out"); dep->endpoint.name = dep->name; - dep->direction = (epnum & 1); if (epnum == 0 || epnum == 1) { dep->endpoint.maxpacket = 512; |