Searched defs:wdt_stop (Results 1 - 8 of 8) sorted by relevance

/drivers/watchdog/
H A Dacquirewdt.c87 static int wdt_stop = 0x43; variable
88 module_param(wdt_stop, int, 0);
89 MODULE_PARM_DESC(wdt_stop, "Acquire WDT 'stop' io port (default 0x43)");
115 inb_p(wdt_stop);
247 if (wdt_stop != wdt_start) {
248 if (!request_region(wdt_stop, 1, WATCHDOG_NAME)) {
249 pr_err("I/O address 0x%04x already in use\n", wdt_stop);
272 if (wdt_stop != wdt_start)
273 release_region(wdt_stop, 1);
282 if (wdt_stop !
[all...]
H A Dadvantechwdt.c28 * add wdt_start and wdt_stop as parameters.
59 * to I/O port wdt_start. To disable, read I/O port wdt_stop.
62 * the manual says wdt_stop is 0x43, not 0x443).
66 static int wdt_stop = 0x443; variable
67 module_param(wdt_stop, int, 0);
68 MODULE_PARM_DESC(wdt_stop, "Advantech WDT 'stop' io port (default 0x443)");
98 inb_p(wdt_stop);
245 if (wdt_stop != wdt_start) {
246 if (!request_region(wdt_stop, 1, WATCHDOG_NAME)) {
248 wdt_stop);
[all...]
H A Dsbc60xxwdt.c37 * made wdt_stop and wdt_start module params
76 static int wdt_stop = 0x45; variable
77 module_param(wdt_stop, int, 0);
78 MODULE_PARM_DESC(wdt_stop, "SBC60xx WDT 'stop' io port (default 0x45)");
156 inb_p(wdt_stop);
326 if ((wdt_stop != 0x45) && (wdt_stop != wdt_start))
327 release_region(wdt_stop, 1);
348 if (wdt_stop != 0x45 && wdt_stop !
[all...]
H A Dvia_wdt.c119 static int wdt_stop(struct watchdog_device *wdd) function
146 .stop = wdt_stop,
H A Dw83977f_wdt.c142 static int wdt_stop(void) function
311 wdt_stop();
407 wdt_stop();
445 wdt_stop();
518 wdt_stop();
H A Dwafer5823wdt.c61 static int wdt_stop = 0x843; variable
80 inb_p(wdt_stop);
95 inb_p(wdt_stop);
268 if (wdt_stop != wdt_start) {
269 if (!request_region(wdt_stop, 1, "Wafer 5823 WDT")) {
270 pr_err("I/O address 0x%04x already in use\n", wdt_stop);
304 if (wdt_stop != wdt_start)
305 release_region(wdt_stop, 1);
314 if (wdt_stop != wdt_start)
315 release_region(wdt_stop,
[all...]
H A Dwdt.c141 * wdt_stop:
146 static int wdt_stop(void) function
442 wdt_stop();
516 wdt_stop();
H A Dit87_wdt.c283 static int wdt_stop(void) function
418 int ret = wdt_stop();
526 rc = wdt_stop();
565 wdt_stop();

Completed in 66 milliseconds