Lines Matching defs:timeout
30 * made timeout (the emulated heartbeat) a
36 * because this particular WDT has a very short timeout (1.6
69 * The W83877F seems to be fixed at 1.6s timeout (at least on the
81 #define WATCHDOG_TIMEOUT 30 /* 30 sec default timeout */
83 static int timeout = WATCHDOG_TIMEOUT;
84 module_param(timeout, int, 0);
85 MODULE_PARM_DESC(timeout,
86 "Watchdog timeout in seconds. (1<=timeout<=3600, default="
156 next_heartbeat = jiffies + (timeout * HZ);
179 next_heartbeat = jiffies + (timeout * HZ);
289 timeout = new_timeout;
294 return put_user(timeout, p);
353 if (timeout < 1 || timeout > 3600) { /* arbitrary upper limit */
354 timeout = WATCHDOG_TIMEOUT;
355 pr_info("timeout value must be 1 <= x <= 3600, using %d\n",
356 timeout);
385 pr_info("WDT driver for W83877F initialised. timeout=%d sec (nowayout=%d)\n",
386 timeout, nowayout);