diff options
author | Atsushi Nemoto <anemo@mba.ocn.ne.jp> | 2008-07-23 11:25:18 -0400 |
---|---|---|
committer | Ralf Baechle <ralf@linux-mips.org> | 2008-07-30 16:54:39 -0400 |
commit | 683147254ef7e69ebbbe55280ba6a3c5ae2325d8 (patch) | |
tree | 4f242b09bcd54ab4563e9c6201dc0c8ded351fdc /arch/mips/txx9/rbtx4927 | |
parent | a49297e8fc8a9a835ac4ec124aa83028abdcc7d5 (diff) |
[MIPS] TXx9: Cleanup watchdog
Unify registration of txx9wdt platform device.
Signed-off-by: Atsushi Nemoto <anemo@mba.ocn.ne.jp>
Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
Diffstat (limited to 'arch/mips/txx9/rbtx4927')
-rw-r--r-- | arch/mips/txx9/rbtx4927/setup.c | 21 |
1 files changed, 1 insertions, 20 deletions
diff --git a/arch/mips/txx9/rbtx4927/setup.c b/arch/mips/txx9/rbtx4927/setup.c index 54c33c3e9f7d..f01af382e9a8 100644 --- a/arch/mips/txx9/rbtx4927/setup.c +++ b/arch/mips/txx9/rbtx4927/setup.c | |||
@@ -328,30 +328,11 @@ static int __init rbtx4927_ne_init(void) | |||
328 | return IS_ERR(dev) ? PTR_ERR(dev) : 0; | 328 | return IS_ERR(dev) ? PTR_ERR(dev) : 0; |
329 | } | 329 | } |
330 | 330 | ||
331 | /* Watchdog support */ | ||
332 | |||
333 | static int __init txx9_wdt_init(unsigned long base) | ||
334 | { | ||
335 | struct resource res = { | ||
336 | .start = base, | ||
337 | .end = base + 0x100 - 1, | ||
338 | .flags = IORESOURCE_MEM, | ||
339 | }; | ||
340 | struct platform_device *dev = | ||
341 | platform_device_register_simple("txx9wdt", -1, &res, 1); | ||
342 | return IS_ERR(dev) ? PTR_ERR(dev) : 0; | ||
343 | } | ||
344 | |||
345 | static int __init rbtx4927_wdt_init(void) | ||
346 | { | ||
347 | return txx9_wdt_init(TX4927_TMR_REG(2) & 0xfffffffffULL); | ||
348 | } | ||
349 | |||
350 | static void __init rbtx4927_device_init(void) | 331 | static void __init rbtx4927_device_init(void) |
351 | { | 332 | { |
352 | toshiba_rbtx4927_rtc_init(); | 333 | toshiba_rbtx4927_rtc_init(); |
353 | rbtx4927_ne_init(); | 334 | rbtx4927_ne_init(); |
354 | rbtx4927_wdt_init(); | 335 | tx4927_wdt_init(); |
355 | } | 336 | } |
356 | 337 | ||
357 | struct txx9_board_vec rbtx4927_vec __initdata = { | 338 | struct txx9_board_vec rbtx4927_vec __initdata = { |