]> asedeno.scripts.mit.edu Git - linux.git/commitdiff
usb: gadget: hid: mirror init operations in module cleanup
authorAndrzej Pietrasiewicz <andrzej.p@samsung.com>
Thu, 6 Nov 2014 10:11:58 +0000 (11:11 +0100)
committerFelipe Balbi <balbi@ti.com>
Thu, 6 Nov 2014 22:18:17 +0000 (16:18 -0600)
So far platform driver has been unregistered first,
so just after that the usb composite is still available,
but there is no hid data any more.

Reverse the order so that first the usb composite becomes
unavailable and second the hid data goes away.

Signed-off-by: Andrzej Pietrasiewicz <andrzej.p@samsung.com>
Signed-off-by: Felipe Balbi <balbi@ti.com>
drivers/usb/gadget/legacy/hid.c

index 778613eb37af8aaefd943c63c991462f722d435f..fba80a25260b6a4415576761b7c1b42986ae4e97 100644 (file)
@@ -260,7 +260,7 @@ module_init(hidg_init);
 
 static void __exit hidg_cleanup(void)
 {
-       platform_driver_unregister(&hidg_plat_driver);
        usb_composite_unregister(&hidg_driver);
+       platform_driver_unregister(&hidg_plat_driver);
 }
 module_exit(hidg_cleanup);