Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 877c1f54 authored by Felipe Balbi's avatar Felipe Balbi Committed by Greg Kroah-Hartman
Browse files

usb: gadget: ci13xx_udc: fix usb_ep_enable() call



commit 72c973dd (usb: gadget: add usb_endpoint_descriptor
to struct usb_ep) has introduced a compile error to
ci13xxx_udc. Fix it.

Signed-off-by: default avatarFelipe Balbi <balbi@ti.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@suse.de>
parent 513385a3
Loading
Loading
Loading
Loading
+5 −2
Original line number Diff line number Diff line
@@ -2620,10 +2620,13 @@ static int ci13xxx_start(struct usb_gadget_driver *driver,
	if (retval)
		goto done;
	spin_unlock_irqrestore(udc->lock, flags);
	retval = usb_ep_enable(&udc->ep0out.ep, &ctrl_endpt_out_desc);
	udc->ep0out.ep.desc = &ctrl_endpt_out_desc;
	retval = usb_ep_enable(&udc->ep0out.ep);
	if (retval)
		return retval;
	retval = usb_ep_enable(&udc->ep0in.ep, &ctrl_endpt_in_desc);

	udc->ep0in.ep.desc = &ctrl_endpt_in_desc;
	retval = usb_ep_enable(&udc->ep0in.ep);
	if (retval)
		return retval;
	spin_lock_irqsave(udc->lock, flags);