diff options
author | Arnd Bergmann <arnd@arndb.de> | 2019-09-08 23:33:51 +0300 |
---|---|---|
committer | Arnd Bergmann <arnd@arndb.de> | 2022-04-19 22:33:57 +0300 |
commit | e86bd43bcfc579cf8935c1913e92cb76b4ba81c2 (patch) | |
tree | d4973a357656f2ab6af07a4d07c86b6acd389a3c /arch/arm/mach-pxa/pxa27x.c | |
parent | ee84cbd5df2beaf14e8af0955f1ab15ad3f81504 (diff) | |
download | linux-e86bd43bcfc579cf8935c1913e92cb76b4ba81c2.tar.xz |
watchdog: sa1100: use platform device registration
Rather than relying on machine specific headers to
pass down the reboot status and the register locations,
use resources and platform_data.
Aside from this, keep the changes to a minimum.
Cc: Wim Van Sebroeck <wim@linux-watchdog.org>
Cc: linux-watchdog@vger.kernel.org
Acked-by: Guenter Roeck <linux@roeck-us.net>
Signed-off-by: Arnd Bergmann <arnd@arndb.de>
Diffstat (limited to 'arch/arm/mach-pxa/pxa27x.c')
-rw-r--r-- | arch/arm/mach-pxa/pxa27x.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/arm/mach-pxa/pxa27x.c b/arch/arm/mach-pxa/pxa27x.c index a81ac88ecbfd..38fdd22c4dc5 100644 --- a/arch/arm/mach-pxa/pxa27x.c +++ b/arch/arm/mach-pxa/pxa27x.c @@ -337,7 +337,7 @@ static int __init pxa27x_init(void) if (cpu_is_pxa27x()) { - reset_status = RCSR; + pxa_register_wdt(RCSR); pxa27x_init_pm(); |