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/cpwd.c | 13 +------------ 1 file changed, 1 insertion(+), 12 deletions(-) (limited to 'drivers/watchdog/cpwd.c') diff --git a/drivers/watchdog/cpwd.c b/drivers/watchdog/cpwd.c index 1e013e8457b7..1b793dfd868f 100644 --- a/drivers/watchdog/cpwd.c +++ b/drivers/watchdog/cpwd.c @@ -687,15 +687,4 @@ static struct platform_driver cpwd_driver = { .remove = __devexit_p(cpwd_remove), }; -static int __init cpwd_init(void) -{ - return platform_driver_register(&cpwd_driver); -} - -static void __exit cpwd_exit(void) -{ - platform_driver_unregister(&cpwd_driver); -} - -module_init(cpwd_init); -module_exit(cpwd_exit); +module_platform_driver(cpwd_driver); -- cgit v1.2.3