Lines Matching refs:timeout
64 unsigned char timeout;
69 static int timeout = WATCHDOG_TIMEOUT;
70 module_param(timeout, int, 0);
71 MODULE_PARM_DESC(timeout,
72 "Watchdog timeout in seconds. 1<=timeout<=15300, default="
134 /* write timeout value twice to arm watchdog */
135 outb(priv->timeout, rt_base + WDT_VAL);
136 outb(priv->timeout, rt_base + WDT_VAL);
200 * if new timeout is bigger then 255 seconds, change the
201 * unit to minutes and round the timeout up to the next whole minute
210 priv->timeout = t;
212 wdog->timeout = unit_min ? t * 60 : t;
272 watchdog_init_timeout(wdt_dev, timeout, NULL);
282 exar_wdt_set_timeout(wdt_dev, timeout);
290 dev_info(dev, "XR28V%X WDT initialized. timeout=%d sec (nowayout=%d)\n",
291 priv->did, timeout, nowayout);