Lines Matching refs:timeout
33 * reset the system (causing a reboot) after the timeout occurs.
77 static int timeout = 60; /* timeout value: default is 60 "units" */
192 * Bit 2 Force Timeout: 1 = Forces WD timeout event (self-cleaning)
194 * 0 = P20 activity does not generate the WD timeout event
196 * controller, to force the WD timeout event.
225 /* disable the timeout */
264 /* disable timeout */
271 /* set timeout => enable watchdog */
279 /* set Power LED to blink, if we enable the timeout */
282 /* set timeout value */
289 /* get timeout */
309 /* set the timeout to 0 to disable the watchdog */
313 /* enable watchdog by setting the current timeout */
317 /* set the current timeout... */
318 wb_smsc_wdt_set_timeout(timeout);
330 wdt_timeout_value(timeout);
337 /* return, if the watchdog is enabled (timeout is set...) */
347 /* open => enable watchdog and set initial timeout */
363 timeout, (unit == UNIT_SECOND) ? "second(s)" : "minute(s)");
475 timeout = new_timeout;
476 wb_smsc_wdt_set_timeout(timeout);
477 fallthrough; /* and return the new timeout */
479 new_timeout = timeout;
494 /* set timeout to 0, to avoid possible race-condition */
495 timeout = 0;
541 if (timeout > MAX_TIMEOUT)
542 timeout = MAX_TIMEOUT;
562 timeout, (unit == UNIT_SECOND) ? "second(s)" : "minute(s)");
609 module_param(timeout, int, 0);
610 MODULE_PARM_DESC(timeout, "range is 1-255 units, default is 60");