Re: [U-Boot] [PATCH V2] usb: gadget: ci_udc: implement usb_ep_ops dequeue callback

2015-09-09 Thread Fabio Estevam
On Thu, Aug 27, 2015 at 10:20 PM, Peng Fan wrote: > Implement endpoint dequeue callback function. > > Without this function, uboot will hang when executing fastboot comamnd. > See following flow: >

Re: [U-Boot] [PATCH V2] usb: gadget: ci_udc: implement usb_ep_ops dequeue callback

2015-09-09 Thread Marek Vasut
On Thursday, September 10, 2015 at 01:04:23 AM, Fabio Estevam wrote: > On Thu, Aug 27, 2015 at 10:20 PM, Peng Fan wrote: > > Implement endpoint dequeue callback function. > > > > Without this function, uboot will hang when executing fastboot comamnd. > > See following

Re: [U-Boot] [PATCH V2] usb: gadget: ci_udc: implement usb_ep_ops dequeue callback

2015-08-29 Thread Marek Vasut
On Friday, August 28, 2015 at 03:20:30 AM, Peng Fan wrote: Implement endpoint dequeue callback function. Without this function, uboot will hang when executing fastboot comamnd. See following flow: fastboot_tx_write_str-fastboot_tx_write-usb_ep_dequeue-ep-ops-dequeue without implement

[U-Boot] [PATCH V2] usb: gadget: ci_udc: implement usb_ep_ops dequeue callback

2015-08-27 Thread Peng Fan
Implement endpoint dequeue callback function. Without this function, uboot will hang when executing fastboot comamnd. See following flow: fastboot_tx_write_str-fastboot_tx_write-usb_ep_dequeue-ep-ops-dequeue without implement ci_udc dequeue function, ep-ops-dequeue is NULL, then uboot will hang.