Home
last modified time | relevance | path

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

/linux-2.4.37.9/drivers/net/wan/
Dcomx-proto-ppp.c58 struct timer_list status_timer; member
75 mod_timer(&spch->status_timer,jiffies + HZ*3); in syncppp_status_timerfun()
116 init_timer(&spch->status_timer); in syncppp_open()
117 spch->status_timer.function=syncppp_status_timerfun; in syncppp_open()
118 spch->status_timer.data=(unsigned long)dev; in syncppp_open()
119 spch->status_timer.expires=jiffies + HZ*3; in syncppp_open()
120 add_timer(&spch->status_timer); in syncppp_open()
131 del_timer(&spch->status_timer); in syncppp_close()
Dcomx-hw-locomx.c75 struct timer_list status_timer; member
141 mod_timer(&hw->status_timer,jiffies + ch->lineup_delay * HZ); in locomx_status_timerfun()
231 init_timer(&hw->status_timer); in LOCOMX_open()
232 hw->status_timer.function=locomx_status_timerfun; in LOCOMX_open()
233 hw->status_timer.data=(unsigned long)dev; in LOCOMX_open()
234 hw->status_timer.expires=jiffies + ch->lineup_delay * HZ; in LOCOMX_open()
235 add_timer(&hw->status_timer); in LOCOMX_open()
269 del_timer(&hw->status_timer); in LOCOMX_close()
/linux-2.4.37.9/drivers/char/
Dsynclinkmp.c195 struct timer_list status_timer; /* input signal status check timer */ member
2638 init_timer(&info->status_timer); in startup()
2639 info->status_timer.data = (unsigned long)info; in startup()
2640 info->status_timer.function = status_timeout; in startup()
2641 info->status_timer.expires = jiffies + jiffies_from_ms(10); in startup()
2642 add_timer(&info->status_timer); in startup()
2671 del_timer(&info->status_timer); in shutdown()
5556 info->status_timer.data = (unsigned long)info; in status_timeout()
5557 info->status_timer.function = status_timeout; in status_timeout()
5558 info->status_timer.expires = jiffies + jiffies_from_ms(10); in status_timeout()
[all …]