diff options
author | Axel Lin <axel.lin@gmail.com> | 2011-11-29 00:56:27 -0500 |
---|---|---|
committer | Wim Van Sebroeck <wim@iguana.be> | 2012-01-06 09:17:25 -0500 |
commit | b8ec61189f3b4cd9d1b2856342f5d7676151d01c (patch) | |
tree | 0493dabe92429616ad27d725a9139a69ebe9b83b /drivers/watchdog/jz4740_wdt.c | |
parent | 1334f32938e46fb321c67a652997d33583257249 (diff) |
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 <axel.lin@gmail.com>
Cc: Nicolas Thill <nico@openwrt.org>
Cc: Florian Fainelli <florian@openwrt.org>
Cc: "David S. Miller" <davem@davemloft.net>
Cc: Paul Cercueil <paul@crapouillou.net>
Cc: Marc Zyngier <maz@misterjones.org>
Cc: Wan ZongShun <mcuos.com@gmail.com>
Cc: Alejandro Cabrera <aldaya@gmail.com>
Cc: "George G. Davis" <gdavis@mvista.com>
Cc: Sylver Bruneau <sylver.bruneau@googlemail.com>
Cc: Vitaly Wool <vital@embeddedalley.com>
Cc: Mika Westerberg <mika.westerberg@iki.fi>
Cc: Timo Kokkonen <timo.t.kokkonen@nokia.com>
Signed-off-by: Wim Van Sebroeck <wim@iguana.be>
Diffstat (limited to 'drivers/watchdog/jz4740_wdt.c')
-rw-r--r-- | drivers/watchdog/jz4740_wdt.c | 13 |
1 files changed, 1 insertions, 12 deletions
diff --git a/drivers/watchdog/jz4740_wdt.c b/drivers/watchdog/jz4740_wdt.c index 684ba01fb540..17ef300bccc5 100644 --- a/drivers/watchdog/jz4740_wdt.c +++ b/drivers/watchdog/jz4740_wdt.c | |||
@@ -295,18 +295,7 @@ static struct platform_driver jz4740_wdt_driver = { | |||
295 | }, | 295 | }, |
296 | }; | 296 | }; |
297 | 297 | ||
298 | 298 | module_platform_driver(jz4740_wdt_driver); | |
299 | static int __init jz4740_wdt_init(void) | ||
300 | { | ||
301 | return platform_driver_register(&jz4740_wdt_driver); | ||
302 | } | ||
303 | module_init(jz4740_wdt_init); | ||
304 | |||
305 | static void __exit jz4740_wdt_exit(void) | ||
306 | { | ||
307 | platform_driver_unregister(&jz4740_wdt_driver); | ||
308 | } | ||
309 | module_exit(jz4740_wdt_exit); | ||
310 | 299 | ||
311 | MODULE_AUTHOR("Paul Cercueil <paul@crapouillou.net>"); | 300 | MODULE_AUTHOR("Paul Cercueil <paul@crapouillou.net>"); |
312 | MODULE_DESCRIPTION("jz4740 Watchdog Driver"); | 301 | MODULE_DESCRIPTION("jz4740 Watchdog Driver"); |