Browse Source

usb: pch_udc: Fix the worning log issue at gadget driver remove

When removing a serial gadget driver, the kernel warning message is outputted.
This patch fixed this issue.

The pch_udc driver did not have disconnection processing of gadget.

Signed-off-by: Toshiharu Okada <toshiharu-linux@dsn.okisemi.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
Toshiharu Okada 14 years ago
parent
commit
15680cdfc6
1 changed files with 2 additions and 1 deletions
  1. 2 1
      drivers/usb/gadget/pch_udc.c

+ 2 - 1
drivers/usb/gadget/pch_udc.c

@@ -2718,7 +2718,8 @@ int usb_gadget_unregister_driver(struct usb_gadget_driver *driver)
 
 
 	pch_udc_disable_interrupts(dev, UDC_DEVINT_MSK);
 	pch_udc_disable_interrupts(dev, UDC_DEVINT_MSK);
 
 
-	/* Assues that there are no pending requets with this driver */
+	/* Assures that there are no pending requests with this driver */
+	driver->disconnect(&dev->gadget);
 	driver->unbind(&dev->gadget);
 	driver->unbind(&dev->gadget);
 	dev->gadget.dev.driver = NULL;
 	dev->gadget.dev.driver = NULL;
 	dev->driver = NULL;
 	dev->driver = NULL;