Commit 9706247d authored by Michał Mirosław's avatar Michał Mirosław Committed by Felipe Balbi

usb: gadget: udc: atmel: remove outdated comment in usba_ep_disable()

Fixed commit removed the offending behaviour from the driver, but missed
the comment and associated test. Remove them now.

Fixes: 38e58986 ("usb: gadget: udc: atmel: don't disable enpdoints we don't own")
Signed-off-by: default avatarMichał Mirosław <mirq-linux@rere.qmqm.pl>
Signed-off-by: default avatarFelipe Balbi <balbi@kernel.org>
parent 4fdf228c
...@@ -676,13 +676,7 @@ static int usba_ep_disable(struct usb_ep *_ep) ...@@ -676,13 +676,7 @@ static int usba_ep_disable(struct usb_ep *_ep)
if (!ep->ep.desc) { if (!ep->ep.desc) {
spin_unlock_irqrestore(&udc->lock, flags); spin_unlock_irqrestore(&udc->lock, flags);
/* REVISIT because this driver disables endpoints in DBG(DBG_ERR, "ep_disable: %s not enabled\n", ep->ep.name);
* reset_all_endpoints() before calling disconnect(),
* most gadget drivers would trigger this non-error ...
*/
if (udc->gadget.speed != USB_SPEED_UNKNOWN)
DBG(DBG_ERR, "ep_disable: %s not enabled\n",
ep->ep.name);
return -EINVAL; return -EINVAL;
} }
ep->ep.desc = NULL; ep->ep.desc = NULL;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment