aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/drivers/usb/host/isp116x-hcd.c
diff options
context:
space:
mode:
authorTobias Klauser <tklauser@distanz.ch>2012-02-28 12:57:21 +0100
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2012-03-02 16:20:28 -0800
commit2e8d3fe4bf680b8263e0c81a8aa46a8d07b0f7be (patch)
tree0837268b702753249555dc991638f83cd763cd25 /drivers/usb/host/isp116x-hcd.c
parentusb: dwc3: core: Convert to module_platform_driver (diff)
downloadwireguard-linux-2e8d3fe4bf680b8263e0c81a8aa46a8d07b0f7be.tar.xz
wireguard-linux-2e8d3fe4bf680b8263e0c81a8aa46a8d07b0f7be.zip
usb: isp116x-hcd: Convert to module_platform_driver
Use the module_platform_driver macro, move the usb_disabled() check to the probe function and get rid of the rather pointless message on module load. Signed-off-by: Tobias Klauser <tklauser@distanz.ch> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/usb/host/isp116x-hcd.c')
-rw-r--r--drivers/usb/host/isp116x-hcd.c23
1 files changed, 4 insertions, 19 deletions
diff --git a/drivers/usb/host/isp116x-hcd.c b/drivers/usb/host/isp116x-hcd.c
index d91e5f211a76..924880087a74 100644
--- a/drivers/usb/host/isp116x-hcd.c
+++ b/drivers/usb/host/isp116x-hcd.c
@@ -1569,6 +1569,9 @@ static int __devinit isp116x_probe(struct platform_device *pdev)
int ret = 0;
unsigned long irqflags;
+ if (usb_disabled())
+ return -ENODEV;
+
if (pdev->num_resources < 3) {
ret = -ENODEV;
goto err1;
@@ -1708,22 +1711,4 @@ static struct platform_driver isp116x_driver = {
},
};
-/*-----------------------------------------------------------------*/
-
-static int __init isp116x_init(void)
-{
- if (usb_disabled())
- return -ENODEV;
-
- INFO("driver %s, %s\n", hcd_name, DRIVER_VERSION);
- return platform_driver_register(&isp116x_driver);
-}
-
-module_init(isp116x_init);
-
-static void __exit isp116x_cleanup(void)
-{
- platform_driver_unregister(&isp116x_driver);
-}
-
-module_exit(isp116x_cleanup);
+module_platform_driver(isp116x_driver);