Commit acaaaf62 authored by Jean Delvare's avatar Jean Delvare Committed by Wim Van Sebroeck

watchdog: advantechwdt: Use platform_driver_probe

Using platform_driver_probe instead of platform_driver_register has
two benefits:
* The driver will fail to load if device probing fails.
* The probe function can be marked __init.
Signed-off-by: default avatarJean Delvare <jdelvare@suse.de>
Reviewed-by: default avatarGuenter Roeck <linux@roeck-us.net>
Signed-off-by: default avatarWim Van Sebroeck <wim@iguana.be>
parent b0e0b4b5
...@@ -238,7 +238,7 @@ static struct miscdevice advwdt_miscdev = { ...@@ -238,7 +238,7 @@ static struct miscdevice advwdt_miscdev = {
* Init & exit routines * Init & exit routines
*/ */
static int advwdt_probe(struct platform_device *dev) static int __init advwdt_probe(struct platform_device *dev)
{ {
int ret; int ret;
...@@ -299,7 +299,6 @@ static void advwdt_shutdown(struct platform_device *dev) ...@@ -299,7 +299,6 @@ static void advwdt_shutdown(struct platform_device *dev)
} }
static struct platform_driver advwdt_driver = { static struct platform_driver advwdt_driver = {
.probe = advwdt_probe,
.remove = advwdt_remove, .remove = advwdt_remove,
.shutdown = advwdt_shutdown, .shutdown = advwdt_shutdown,
.driver = { .driver = {
...@@ -314,21 +313,19 @@ static int __init advwdt_init(void) ...@@ -314,21 +313,19 @@ static int __init advwdt_init(void)
pr_info("WDT driver for Advantech single board computer initialising\n"); pr_info("WDT driver for Advantech single board computer initialising\n");
err = platform_driver_register(&advwdt_driver);
if (err)
return err;
advwdt_platform_device = platform_device_register_simple(DRV_NAME, advwdt_platform_device = platform_device_register_simple(DRV_NAME,
-1, NULL, 0); -1, NULL, 0);
if (IS_ERR(advwdt_platform_device)) { if (IS_ERR(advwdt_platform_device))
err = PTR_ERR(advwdt_platform_device); return PTR_ERR(advwdt_platform_device);
goto unreg_platform_driver;
} err = platform_driver_probe(&advwdt_driver, advwdt_probe);
if (err)
goto unreg_platform_device;
return 0; return 0;
unreg_platform_driver: unreg_platform_device:
platform_driver_unregister(&advwdt_driver); platform_device_unregister(advwdt_platform_device);
return err; return err;
} }
......
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