Loading drivers/usb/dwc3/gadget.c +3 −5 Original line number Diff line number Diff line Loading @@ -350,9 +350,6 @@ int dwc3_send_gadget_ep_cmd(struct dwc3 *dwc, unsigned ep, dev_vdbg(dwc->dev, "Command Complete --> %d\n", DWC3_DEPCMD_STATUS(reg)); if (DWC3_DEPCMD_STATUS(reg)) return -EINVAL; /* SW issues START TRANSFER command to isochronous ep * with future frame interval. If future interval time * has already passed when core recieves command, core Loading @@ -361,7 +358,8 @@ int dwc3_send_gadget_ep_cmd(struct dwc3 *dwc, unsigned ep, */ if (reg & 0x2000) return -EAGAIN; else else if (DWC3_DEPCMD_STATUS(reg)) return -EINVAL; return 0; } Loading Loading
drivers/usb/dwc3/gadget.c +3 −5 Original line number Diff line number Diff line Loading @@ -350,9 +350,6 @@ int dwc3_send_gadget_ep_cmd(struct dwc3 *dwc, unsigned ep, dev_vdbg(dwc->dev, "Command Complete --> %d\n", DWC3_DEPCMD_STATUS(reg)); if (DWC3_DEPCMD_STATUS(reg)) return -EINVAL; /* SW issues START TRANSFER command to isochronous ep * with future frame interval. If future interval time * has already passed when core recieves command, core Loading @@ -361,7 +358,8 @@ int dwc3_send_gadget_ep_cmd(struct dwc3 *dwc, unsigned ep, */ if (reg & 0x2000) return -EAGAIN; else else if (DWC3_DEPCMD_STATUS(reg)) return -EINVAL; return 0; } Loading