Lines Matching refs:timeout
59 #define WDTO 0x05 /* Watchdog timeout register */
70 static int timeout = 1;
88 module_param(timeout, int, 0);
89 MODULE_PARM_DESC(timeout, "range is 0-255 minutes, default is 1");
140 /* set the timeout and get the ball rolling */
141 __sc1200wdt_write_data(WDTO, timeout);
170 if (timeout > MAX_TIMEOUT)
171 timeout = MAX_TIMEOUT;
174 pr_info("Watchdog enabled, timeout = %d min(s)", timeout);
225 sc1200wdt_write_data(WDTO, timeout);
235 timeout = new_timeout;
236 sc1200wdt_write_data(WDTO, timeout);
237 fallthrough; /* and return the new timeout */
240 return put_user(timeout * 60, p);
254 sc1200wdt_write_data(WDTO, timeout);
255 pr_crit("Unexpected close!, timeout = %d min(s)\n", timeout);
283 sc1200wdt_write_data(WDTO, timeout);