diff options
author | David Lechner <david@lechnology.com> | 2018-01-07 04:10:15 +0100 |
---|---|---|
committer | Sekhar Nori <nsekhar@ti.com> | 2018-02-19 11:55:15 +0100 |
commit | 94f2e94514e5dea6677b4379efd3479105519bdc (patch) | |
tree | 8a349e5a86204d4514507b8238dc4c54283a8c8c /arch/arm/mach-davinci/devices-da8xx.c | |
parent | ARM: da8xx: use platform data for CFGCHIP syscon regmap (diff) | |
download | linux-94f2e94514e5dea6677b4379efd3479105519bdc.tar.xz linux-94f2e94514e5dea6677b4379efd3479105519bdc.zip |
ARM: davinci: remove watchdog reset
This removes the watchdog reset code. The reset has been moved to
drivers/watchdog/davinci_wdt.c. The watchdog driver registers the reset
with the kernel so defining a reset for each machine is no longer needed.
Signed-off-by: David Lechner <david@lechnology.com>
Acked-by: Guenter Roeck <linux@roeck-us.net>
Signed-off-by: Sekhar Nori <nsekhar@ti.com>
Diffstat (limited to 'arch/arm/mach-davinci/devices-da8xx.c')
-rw-r--r-- | arch/arm/mach-davinci/devices-da8xx.c | 13 |
1 files changed, 0 insertions, 13 deletions
diff --git a/arch/arm/mach-davinci/devices-da8xx.c b/arch/arm/mach-davinci/devices-da8xx.c index 166bf29b1296..24422ba07cc7 100644 --- a/arch/arm/mach-davinci/devices-da8xx.c +++ b/arch/arm/mach-davinci/devices-da8xx.c @@ -370,19 +370,6 @@ static struct platform_device da8xx_wdt_device = { .resource = da8xx_watchdog_resources, }; -void da8xx_restart(enum reboot_mode mode, const char *cmd) -{ - struct device *dev; - - dev = bus_find_device_by_name(&platform_bus_type, NULL, "davinci-wdt"); - if (!dev) { - pr_err("%s: failed to find watchdog device\n", __func__); - return; - } - - davinci_watchdog_reset(to_platform_device(dev)); -} - int __init da8xx_register_watchdog(void) { return platform_device_register(&da8xx_wdt_device); |