watchdog: softdog: remove forward declaration
Signed-off-by: Wolfram Sang <wsa+renesas@sang-engineering.com> Reviewed-by: Guenter Roeck <linux@roeck-us.net> Signed-off-by: Guenter Roeck <linux@roeck-us.net> Signed-off-by: Wim Van Sebroeck <wim@iguana.be>
This commit is contained in:
parent
0efc70b823
commit
44ba0f04af
|
@ -54,11 +54,6 @@ module_param(soft_panic, int, 0);
|
|||
MODULE_PARM_DESC(soft_panic,
|
||||
"Softdog action, set to 1 to panic, 0 to reboot (default=0)");
|
||||
|
||||
static void softdog_fire(unsigned long);
|
||||
|
||||
static struct timer_list softdog_ticktock =
|
||||
TIMER_INITIALIZER(softdog_fire, 0, 0);
|
||||
|
||||
static void softdog_fire(unsigned long data)
|
||||
{
|
||||
module_put(THIS_MODULE);
|
||||
|
@ -74,6 +69,9 @@ static void softdog_fire(unsigned long data)
|
|||
}
|
||||
}
|
||||
|
||||
static struct timer_list softdog_ticktock =
|
||||
TIMER_INITIALIZER(softdog_fire, 0, 0);
|
||||
|
||||
static int softdog_ping(struct watchdog_device *w)
|
||||
{
|
||||
if (!mod_timer(&softdog_ticktock, jiffies+(w->timeout*HZ)))
|
||||
|
|
Loading…
Reference in New Issue