From b8ec61189f3b4cd9d1b2856342f5d7676151d01c Mon Sep 17 00:00:00 2001 From: Axel Lin Date: Tue, 29 Nov 2011 13:56:27 +0800 Subject: watchdog: convert drivers/watchdog/* to use module_platform_driver() This patch converts the drivers in drivers/watchdog/* to use the module_platform_driver() macro which makes the code smaller and a bit simpler. Signed-off-by: Axel Lin Cc: Nicolas Thill Cc: Florian Fainelli Cc: "David S. Miller" Cc: Paul Cercueil Cc: Marc Zyngier Cc: Wan ZongShun Cc: Alejandro Cabrera Cc: "George G. Davis" Cc: Sylver Bruneau Cc: Vitaly Wool Cc: Mika Westerberg Cc: Timo Kokkonen Signed-off-by: Wim Van Sebroeck --- drivers/watchdog/orion_wdt.c | 13 +------------ 1 file changed, 1 insertion(+), 12 deletions(-) (limited to 'drivers/watchdog/orion_wdt.c') diff --git a/drivers/watchdog/orion_wdt.c b/drivers/watchdog/orion_wdt.c index 66bd97f7969a..4ad78f868515 100644 --- a/drivers/watchdog/orion_wdt.c +++ b/drivers/watchdog/orion_wdt.c @@ -294,18 +294,7 @@ static struct platform_driver orion_wdt_driver = { }, }; -static int __init orion_wdt_init(void) -{ - return platform_driver_register(&orion_wdt_driver); -} - -static void __exit orion_wdt_exit(void) -{ - platform_driver_unregister(&orion_wdt_driver); -} - -module_init(orion_wdt_init); -module_exit(orion_wdt_exit); +module_platform_driver(orion_wdt_driver); MODULE_AUTHOR("Sylver Bruneau "); MODULE_DESCRIPTION("Orion Processor Watchdog"); -- cgit v1.2.3-55-g7522