Lines Matching refs:timeout
53 /* User space timeout in seconds */
56 static int timeout = WDT_TIMEOUT;
57 module_param(timeout, int, 0);
58 MODULE_PARM_DESC(timeout, "Watchdog timeout in seconds, between 1 and 1023 "
103 /* calculate when the next userspace timeout will be */
104 next_heartbeat = jiffies + wdd->timeout * HZ;
112 writel(wdd->timeout, wdt_mem + VIA_WDT_COUNT);
131 wdd->timeout = new_timeout;
205 if (timeout < 1 || timeout > WDT_TIMEOUT_MAX)
206 timeout = WDT_TIMEOUT;
208 wdt_dev.timeout = timeout;