Lines Matching refs:timeout
23 #define WATCHDOG_TIMEOUT 60 /* 60 sec default timeout */
29 static u32 ali_timeout_bits; /* stores the computed timeout */
33 static int timeout = WATCHDOG_TIMEOUT;
34 module_param(timeout, int, 0);
35 MODULE_PARM_DESC(timeout,
36 "Watchdog timeout in seconds. (0 < timeout < 18000, default="
101 * Computes the timeout values needed
117 timeout = t;
225 return put_user(timeout, p);
395 /* Check that the timeout value is within it's range;
397 if (timeout < 1 || timeout >= 18000) {
398 timeout = WATCHDOG_TIMEOUT;
399 pr_info("timeout value must be 0 < timeout < 18000, using %d\n",
400 timeout);
403 /* Calculate the watchdog's timeout */
404 ali_settimer(timeout);
419 pr_info("initialized. timeout=%d sec (nowayout=%d)\n",
420 timeout, nowayout);