diff options
author | Kim, Milo <Milo.Kim@ti.com> | 2013-03-26 03:26:49 -0400 |
---|---|---|
committer | Wim Van Sebroeck <wim@iguana.be> | 2013-07-11 16:19:30 -0400 |
commit | 086f3ec187a18e29f8f36ebd4ae9eb8d48d9fd03 (patch) | |
tree | 2c0ad69d5222cadd700a7bef741ce058b24a0711 /drivers/watchdog | |
parent | 26c57ef1ea35f2e7b73db5fad3c81c388d6d056a (diff) |
watchdog: softdog: remove replaceable ping operation
In watchdog_ping(), 'start' is called automatically when 'ping' function call
is not configured.
Softdog driver has same handling in both cases - start and ping, so 'ping' OPS
can be removed.
Signed-off-by: Milo(Woogyom) Kim <milo.kim@ti.com>
Signed-off-by: Wim Van Sebroeck <wim@iguana.be>
Diffstat (limited to 'drivers/watchdog')
-rw-r--r-- | drivers/watchdog/softdog.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/drivers/watchdog/softdog.c b/drivers/watchdog/softdog.c index fe83beb8f1b7..b68b1e519d53 100644 --- a/drivers/watchdog/softdog.c +++ b/drivers/watchdog/softdog.c | |||
@@ -152,7 +152,6 @@ static struct watchdog_ops softdog_ops = { | |||
152 | .owner = THIS_MODULE, | 152 | .owner = THIS_MODULE, |
153 | .start = softdog_ping, | 153 | .start = softdog_ping, |
154 | .stop = softdog_stop, | 154 | .stop = softdog_stop, |
155 | .ping = softdog_ping, | ||
156 | .set_timeout = softdog_set_timeout, | 155 | .set_timeout = softdog_set_timeout, |
157 | }; | 156 | }; |
158 | 157 | ||