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

Commit 820234c8 authored by Ido Shayevitz's avatar Ido Shayevitz Committed by Felipe Balbi
Browse files

usb: gadget: atmel_usba_udc: Remove unneeded condition



The removed condition is always true, since the endpoint descriptor is
set prior to calling the enable endpoint.

Signed-off-by: default avatarIdo Shayevitz <idos@codeaurora.org>
Signed-off-by: default avatarFelipe Balbi <balbi@ti.com>
parent f8f5701b
Loading
Loading
Loading
Loading
+0 −6
Original line number Diff line number Diff line
@@ -599,12 +599,6 @@ usba_ep_enable(struct usb_ep *_ep, const struct usb_endpoint_descriptor *desc)

	spin_lock_irqsave(&ep->udc->lock, flags);

	if (ep->ep.desc) {
		spin_unlock_irqrestore(&ep->udc->lock, flags);
		DBG(DBG_ERR, "ep%d already enabled\n", ep->index);
		return -EBUSY;
	}

	ep->ep.desc = desc;
	ep->ep.maxpacket = maxpacket;