diff options
| author | Ido Shayevitz <[email protected]> | 2012-06-04 13:35:22 +0300 |
|---|---|---|
| committer | Felipe Balbi <[email protected]> | 2012-06-04 18:15:46 +0300 |
| commit | aedaa44dd3214886d70fad92197b98a0ba286cb8 (patch) | |
| tree | 83b3fa46321d9aa4b81d5b0692bce88f2f082192 | |
| parent | 1fa75972c7b9f165af102022aa0090fe0a3a6c16 (diff) | |
usb: gadget: goku_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 <[email protected]>
Signed-off-by: Felipe Balbi <[email protected]>
| -rw-r--r-- | drivers/usb/gadget/goku_udc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/usb/gadget/goku_udc.c b/drivers/usb/gadget/goku_udc.c index b241e6c6a7f2..3d28fb976c78 100644 --- a/drivers/usb/gadget/goku_udc.c +++ b/drivers/usb/gadget/goku_udc.c @@ -102,7 +102,7 @@ goku_ep_enable(struct usb_ep *_ep, const struct usb_endpoint_descriptor *desc) unsigned long flags; ep = container_of(_ep, struct goku_ep, ep); - if (!_ep || !desc || ep->ep.desc + if (!_ep || !desc || desc->bDescriptorType != USB_DT_ENDPOINT) return -EINVAL; dev = ep->dev; |