mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-11 15:37:23 +00:00
usb: gaget: ci: set ep's desc when enable ep
As we need standard usb_ep's desc, so set it when enable ep. Reviewed-by: Peter Chen <peter.chen@nxp.com> Signed-off-by: Li Jun <jun.li@nxp.com> Signed-off-by: Peng Fan <peng.fan@nxp.com>
This commit is contained in:
parent
27c9141b11
commit
723fd5668f
1 changed files with 2 additions and 0 deletions
|
@ -336,6 +336,7 @@ static int ci_ep_enable(struct usb_ep *ep,
|
|||
num = desc->bEndpointAddress & USB_ENDPOINT_NUMBER_MASK;
|
||||
in = (desc->bEndpointAddress & USB_DIR_IN) != 0;
|
||||
ci_ep->desc = desc;
|
||||
ep->desc = desc;
|
||||
|
||||
if (num) {
|
||||
int max = get_unaligned_le16(&desc->wMaxPacketSize);
|
||||
|
@ -358,6 +359,7 @@ static int ci_ep_disable(struct usb_ep *ep)
|
|||
struct ci_ep *ci_ep = container_of(ep, struct ci_ep, ep);
|
||||
|
||||
ci_ep->desc = NULL;
|
||||
ep->desc = NULL;
|
||||
return 0;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue