staging: emxx_udc: add missing usb_ep_set_maxpacket_limit()
Since maxpacket_limit was introduced all UDC drivers should use usb_ep_set_maxpacket_limit() function instead of setting maxpacket value manually. ep.maxpacket_limit contains actual maximum maxpacket value supported by hardware which is needed by epautoconf. Signed-off-by: Robert Baldyga <r.baldyga@samsung.com> Acked-by: Michal Nazarewicz <mina86@mina86.com> Signed-off-by: Felipe Balbi <balbi@ti.com>
This commit is contained in:
Родитель
6fd82b6979
Коммит
cb009d6e0b
|
@ -3203,7 +3203,8 @@ static void __init nbu2ss_drv_ep_init(struct nbu2ss_udc *udc)
|
||||||
ep->ep.name = gp_ep_name[i];
|
ep->ep.name = gp_ep_name[i];
|
||||||
ep->ep.ops = &nbu2ss_ep_ops;
|
ep->ep.ops = &nbu2ss_ep_ops;
|
||||||
|
|
||||||
ep->ep.maxpacket = (i == 0 ? EP0_PACKETSIZE : EP_PACKETSIZE);
|
usb_ep_set_maxpacket_limit(&ep->ep,
|
||||||
|
i == 0 ? EP0_PACKETSIZE : EP_PACKETSIZE);
|
||||||
|
|
||||||
list_add_tail(&ep->ep.ep_list, &udc->gadget.ep_list);
|
list_add_tail(&ep->ep.ep_list, &udc->gadget.ep_list);
|
||||||
INIT_LIST_HEAD(&ep->queue);
|
INIT_LIST_HEAD(&ep->queue);
|
||||||
|
|
Загрузка…
Ссылка в новой задаче