Home
last modified time | relevance | path

Searched refs:cpwd_timer (Results 1 – 1 of 1) sorted by relevance

/linux-4.1.27/drivers/watchdog/
Dcpwd.c157 static struct timer_list cpwd_timer; variable
241 if (timer_pending(&cpwd_timer)) in cpwd_brokentimer()
242 del_timer(&cpwd_timer); in cpwd_brokentimer()
253 cpwd_timer.expires = WD_BTIMEOUT; in cpwd_brokentimer()
254 add_timer(&cpwd_timer); in cpwd_brokentimer()
614 init_timer(&cpwd_timer); in cpwd_probe()
615 cpwd_timer.function = cpwd_brokentimer; in cpwd_probe()
616 cpwd_timer.data = (unsigned long) p; in cpwd_probe()
617 cpwd_timer.expires = WD_BTIMEOUT; in cpwd_probe()
658 del_timer_sync(&cpwd_timer); in cpwd_remove()