Commit 9616bd2a authored by Guenter Roeck's avatar Guenter Roeck
Browse files

watchdog: iTCO_wdt: Simplify module init function



The 'ret' variable in iTCO_wdt_init_module() does not add any value;
drop it.

Reviewed-by: default avatarAndy Shevchenko <andy.shevchenko@gmail.com>
Mika Westerberg <mika.westerberg@linux.intel.com>
Signed-off-by: default avatarGuenter Roeck <linux@roeck-us.net>
parent 78e45696
Loading
Loading
Loading
Loading
+1 −7
Original line number Diff line number Diff line
@@ -612,15 +612,9 @@ static struct platform_driver iTCO_wdt_driver = {

static int __init iTCO_wdt_init_module(void)
{
	int err;

	pr_info("Intel TCO WatchDog Timer Driver v%s\n", DRV_VERSION);

	err = platform_driver_register(&iTCO_wdt_driver);
	if (err)
		return err;

	return 0;
	return platform_driver_register(&iTCO_wdt_driver);
}

static void __exit iTCO_wdt_cleanup_module(void)