Lines Matching refs:timeout
35 * - made timeout (the emulated heartbeat) a module_param
44 * because this particular WDT has a very short timeout (1.6
70 * The AMD Elan SC520 timeout value is 492us times a power of 2 (0-7)
75 * We will program the SC520 watchdog for a timeout of 2.01s.
87 #define WATCHDOG_TIMEOUT 30 /* 30 sec default timeout */
89 static int timeout = WATCHDOG_TIMEOUT;
90 module_param(timeout, int, 0);
91 MODULE_PARM_DESC(timeout,
92 "Watchdog timeout in seconds. (1 <= timeout <= 3600, default="
174 next_heartbeat = jiffies + (timeout * HZ);
201 next_heartbeat = jiffies + (timeout * HZ);
210 timeout = t;
326 return put_user(timeout, p);
384 /* Check that the timeout value is within it's range ;
386 if (wdt_set_heartbeat(timeout)) {
388 pr_info("timeout value must be 1 <= timeout <= 3600, using %d\n",
412 pr_info("WDT driver for SC520 initialised. timeout=%d sec (nowayout=%d)\n",
413 timeout, nowayout);