Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

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>

authored by

Kim, Milo and committed by
Wim Van Sebroeck
086f3ec1 26c57ef1

-1
-1
drivers/watchdog/softdog.c
··· 152 152 .owner = THIS_MODULE, 153 153 .start = softdog_ping, 154 154 .stop = softdog_stop, 155 - .ping = softdog_ping, 156 155 .set_timeout = softdog_set_timeout, 157 156 }; 158 157