Searched refs:wdt_time (Results 1 – 4 of 4) sorted by relevance
/drivers/watchdog/ |
D | at91rm9200_wdt.c | 32 static int wdt_time = WDT_DEFAULT_TIME; variable 35 module_param(wdt_time, int, 0); 36 MODULE_PARM_DESC(wdt_time, "Watchdog time in seconds. (default=" 65 (((65536 * wdt_time) >> 8) & AT91_ST_WDV)); in at91_wdt_start() 122 wdt_time = new_time; in at91_wdt_settimeout() 167 return put_user(wdt_time, p); in at91_wdt_ioctl() 169 return put_user(wdt_time, p); in at91_wdt_ioctl() 215 wdt_time, nowayout ? ", nowayout" : ""); in at91wdt_probe() 271 if (at91_wdt_settimeout(wdt_time)) { in at91_wdt_init() 274 wdt_time); in at91_wdt_init()
|
D | ks8695_wdt.c | 32 static int wdt_time = WDT_DEFAULT_TIME; variable 35 module_param(wdt_time, int, 0); 36 MODULE_PARM_DESC(wdt_time, "Watchdog time in seconds. (default=" 71 unsigned long tval = wdt_time * KS8695_CLOCK_RATE; in ks8695_wdt_start() 118 wdt_time = new_time; in ks8695_wdt_settimeout() 191 return put_user(wdt_time, p); in ks8695_wdt_ioctl() 193 return put_user(wdt_time, p); in ks8695_wdt_ioctl() 239 wdt_time, nowayout ? ", nowayout" : ""); in ks8695wdt_probe() 295 if (ks8695_wdt_settimeout(wdt_time)) { in ks8695_wdt_init() 298 ", using %d\n", wdt_time, WDT_MAX_TIME); in ks8695_wdt_init()
|
D | bcm47xx_wdt.c | 37 static int wdt_time = WDT_DEFAULT_TIME; variable 40 module_param(wdt_time, int, 0); 41 MODULE_PARM_DESC(wdt_time, "Watchdog time in seconds. (default=" 102 atomic_set(&ticks, wdt_time); in bcm47xx_wdt_pet() 127 wdt_time = new_time; in bcm47xx_wdt_settimeout() 229 return put_user(wdt_time, p); in bcm47xx_wdt_ioctl() 272 if (bcm47xx_wdt_settimeout(wdt_time)) { in bcm47xx_wdt_init() 275 (WDT_MAX_TIME + 1), wdt_time); in bcm47xx_wdt_init() 289 wdt_time, nowayout ? ", nowayout" : ""); in bcm47xx_wdt_init()
|
D | bcm63xx_wdt.c | 54 static int wdt_time = WDT_DEFAULT_TIME; variable 92 atomic_set(&bcm63xx_wdt_device.ticks, wdt_time); in bcm63xx_wdt_pet() 112 wdt_time = new_time; in bcm63xx_wdt_settimeout() 215 return put_user(wdt_time, p); in bcm63xx_wdt_ioctl() 264 if (bcm63xx_wdt_settimeout(wdt_time)) { in bcm63xx_wdt_probe() 268 wdt_time); in bcm63xx_wdt_probe()
|