mirror of https://gitee.com/openkylin/linux.git
usb: dwc3: gadget: move direction setting up
no functional changes, just grouping dep initialization. Signed-off-by: Felipe Balbi <balbi@ti.com>
This commit is contained in:
parent
ff62d6b672
commit
9aa62ae429
|
@ -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;
|
||||
|
|
Loading…
Reference in New Issue