Re: [PATCH] USB: gadget: remove unused parameter from udc_stop in usb_gadget_ops

2014-02-19 Thread Robert Baldyga
On 02/18/2014 04:39 PM, Felipe Balbi wrote: On Tue, Dec 17, 2013 at 09:40:35AM +0100, Robert Baldyga wrote: This patch removes parameter struct usb_gadget_driver* from udc_stop() function in struct usb_gadget_ops. This parameter is useless in udc_stop() function, and UDC drivers can work

Re: [PATCH] USB: gadget: remove unused parameter from udc_stop in usb_gadget_ops

2014-02-18 Thread Felipe Balbi
On Tue, Dec 17, 2013 at 09:40:35AM +0100, Robert Baldyga wrote: This patch removes parameter struct usb_gadget_driver* from udc_stop() function in struct usb_gadget_ops. This parameter is useless in udc_stop() function, and UDC drivers can work well without it, so removeing it makes code

[PATCH] USB: gadget: remove unused parameter from udc_stop in usb_gadget_ops

2013-12-17 Thread Robert Baldyga
This patch removes parameter struct usb_gadget_driver* from udc_stop() function in struct usb_gadget_ops. This parameter is useless in udc_stop() function, and UDC drivers can work well without it, so removeing it makes code clearer. This patch modifies UDC drivers to make them compatible witch