Re: [PATCH 3/5] usb: isp1760: udc: add missing usb_ep_set_maxpacket_limit()

2015-07-07 Thread Robert Baldyga
On 07/07/2015 05:01 PM, Dan Carpenter wrote: On Tue, Jul 07, 2015 at 04:02:51PM +0200, Robert Baldyga wrote: Should use usb_ep_set_maxpacket_limit instead of setting maxpacket value manually. This is a behavior change, right, since now we're setting ep->ep.maxpacket and ep->ep.maxpacket_limit

Re: [PATCH 3/5] usb: isp1760: udc: add missing usb_ep_set_maxpacket_limit()

2015-07-07 Thread Dan Carpenter
On Tue, Jul 07, 2015 at 04:02:51PM +0200, Robert Baldyga wrote: > Should use usb_ep_set_maxpacket_limit instead of setting > maxpacket value manually. > This is a behavior change, right, since now we're setting ep->ep.maxpacket and ep->ep.maxpacket_limit where before we only set the first. I don

[PATCH 3/5] usb: isp1760: udc: add missing usb_ep_set_maxpacket_limit()

2015-07-07 Thread Robert Baldyga
Should use usb_ep_set_maxpacket_limit instead of setting maxpacket value manually. Signed-off-by: Robert Baldyga --- drivers/usb/isp1760/isp1760-udc.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/drivers/usb/isp1760/isp1760-udc.c b/drivers/usb/isp1760/isp1760-udc.c in