Home
last modified time | relevance | path

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

/linux-2.4.37.9/drivers/char/
Dsc1200wdt.c172 int new_timeout; in sc1200wdt_ioctl() local
199 if (get_user(new_timeout, (int *)arg)) in sc1200wdt_ioctl()
203 new_timeout /= 60; in sc1200wdt_ioctl()
204 if (new_timeout < 0 || new_timeout > MAX_TIMEOUT) in sc1200wdt_ioctl()
207 timeout = new_timeout; in sc1200wdt_ioctl()
Dshwdt.c334 int new_timeout; in sh_wdt_ioctl() local
353 if (get_user(new_timeout, (int *)arg)) in sh_wdt_ioctl()
355 if (new_timeout < 1 || new_timeout > 3600) /* arbitrary upper limit */ in sh_wdt_ioctl()
357 heartbeat = new_timeout; in sh_wdt_ioctl()
Dwdt83627.c220 int new_timeout; in wdt_ioctl() local
242 if (get_user(new_timeout, p)) in wdt_ioctl()
244 if (wdt_set_heartbeat(new_timeout)) in wdt_ioctl()