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/nuc900_wdt.c | 13 +------------ 1 file changed, 1 insertion(+), 12 deletions(-) (limited to 'drivers/watchdog/nuc900_wdt.c') diff --git a/drivers/watchdog/nuc900_wdt.c b/drivers/watchdog/nuc900_wdt.c index 6cee33d..50359ba 100644 --- a/drivers/watchdog/nuc900_wdt.c +++ b/drivers/watchdog/nuc900_wdt.c @@ -334,18 +334,7 @@ static struct platform_driver nuc900wdt_driver = { }, }; -static int __init nuc900_wdt_init(void) -{ - return platform_driver_register(&nuc900wdt_driver); -} - -static void __exit nuc900_wdt_exit(void) -{ - platform_driver_unregister(&nuc900wdt_driver); -} - -module_init(nuc900_wdt_init); -module_exit(nuc900_wdt_exit); +module_platform_driver(nuc900wdt_driver); MODULE_AUTHOR("Wan ZongShun "); MODULE_DESCRIPTION("Watchdog driver for NUC900"); -- cgit v1.1