Home
last modified time | relevance | path

Searched refs:soft_margin (Results 1 – 5 of 5) sorted by relevance

/Linux-v4.19/drivers/watchdog/
Dwdt285.c45 static unsigned int soft_margin = 60; /* in seconds */ variable
82 reload = soft_margin * (mem_fclk_21285 / 256); in watchdog_open()
173 soft_margin = new_margin; in watchdog_ioctl()
174 reload = soft_margin * (mem_fclk_21285 / 256); in watchdog_ioctl()
178 ret = put_user(soft_margin, int_arg); in watchdog_ioctl()
211 soft_margin); in footbridge_watchdog_init()
227 module_param(soft_margin, int, 0);
228 MODULE_PARM_DESC(soft_margin, "Watchdog timeout in seconds");
Dsoftdog.c34 static unsigned int soft_margin = TIMER_MARGIN; /* in seconds */ variable
35 module_param(soft_margin, uint, 0);
36 MODULE_PARM_DESC(soft_margin,
138 watchdog_init_timeout(&softdog_dev, soft_margin, NULL); in softdog_init()
Dhpwdt.c37 static unsigned int soft_margin = DEFAULT_MARGIN; /* in seconds */ variable
313 if (watchdog_init_timeout(&hpwdt_dev, soft_margin, NULL)) in hpwdt_init_one()
314 dev_warn(&dev->dev, "Invalid soft_margin: %d.\n", soft_margin); in hpwdt_init_one()
364 module_param(soft_margin, int, 0);
365 MODULE_PARM_DESC(soft_margin, "Watchdog timeout in seconds");
/Linux-v4.19/Documentation/watchdog/
Dwatchdog-parameters.txt329 soft_margin: Watchdog soft_margin in seconds.
330 (0 < soft_margin < 65536, default=60)
386 soft_margin: Watchdog timeout in seconds (default=60)
Dhpwdt.txt26 soft_margin - allows the user to set the watchdog timer value.