mirror of
git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2025-09-04 20:19:47 +08:00
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: Ido Shayevitz <idos@codeaurora.org> Signed-off-by: Felipe Balbi <balbi@ti.com>
This commit is contained in:
parent
f8f5701bda
commit
820234c86b
@ -599,12 +599,6 @@ usba_ep_enable(struct usb_ep *_ep, const struct usb_endpoint_descriptor *desc)
|
|||||||
|
|
||||||
spin_lock_irqsave(&ep->udc->lock, flags);
|
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.desc = desc;
|
||||||
ep->ep.maxpacket = maxpacket;
|
ep->ep.maxpacket = maxpacket;
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user