summaryrefslogtreecommitdiffstats
path: root/sys/dev/pci/wdt.c (follow)
Commit message (Collapse)AuthorAgeFilesLines
* If you use sys/param.h, you don't need sys/types.hderaadt2017-09-081-2/+1
|
* Convert watchdog(4) devices to use autoconf(9) framework.mikeb2014-12-101-2/+16
| | | | ok deraadt, tests on glxpcib and ok mpi
* Swap arguments to wdog_register() since it is nicer, and preparederaadt2012-10-171-2/+2
| | | | wdog_shutdown() for external usage.
* use nitems(); no binary change for drivers that are compiled on amd64.jasper2011-04-031-2/+2
| | | | ok claudio@
* these files don't need to include proc.h anymore. ok oga for agptedu2010-04-081-2/+1
|
* Prefix wdt softc members with sc_ like other drivers.mk2009-04-251-24/+24
|
* Remove the header that exposed the old wdt ioctl interface to userland,jsg2008-08-301-3/+1
| | | | | | | wdt was converted to use the common watchdog code some time ago so this is no longer needed. "yes, we should remove it" mbalmer@
* I forgot to remove the UNIT macro when the wdt char device was removedmk2007-08-141-3/+1
| | | | long ago.
* wdt doesn't malloc so no reason to include malloc.h.mk2007-08-011-2/+1
| | | | ok dlg
* use pci_matchbyid() here, too.mbalmer2006-11-251-8/+7
|
* Some more KNF stuff I missed.mk2006-07-091-12/+12
|
* ANSI and KNF. No binary change.mk2006-07-091-16/+12
|
* Remove freebsdism.mk2006-06-191-10/+5
| | | | input and ok mickey.
* KNF and destatic functions.mk2006-06-171-22/+20
| | | | ok brad
* Get rid of the wdt(4) char device. We have watchdog(4) andmk2006-06-111-202/+1
| | | | | | | | | | | | watchdogd(4), so there's no point in supporting old, unused, non-generic interfaces. Tested by < jg , rilk - com>. The sensors available on the WDT501 model will be supported later using the sensors framework. ok mickey markus
* Use the watchdog(4) framework for watchdog services instead of rollingmk2006-05-311-101/+36
| | | | | | | | | | | | | more or less the same code. This means that all our watchdog drivers use the framework, and that they all can be configured using sysctl kern.watchdog.{period,auto}, and they can all use watchdogd. At least for now we still support the /dev/wdt0 char device and userland poking using ioctl. Testing by < jg ! rilk , com >, many thanks! ok deraadt
* Entries in cd_devs[] may be NULL, so be sure to check for them in yourmiod2006-03-151-3/+3
| | | | device open() function.
* do not inline pci_mapreg_map() anymore as it is olrite now; brad@ okmickey2005-09-111-13/+4
|
* change arguments to suser. suser now takes the process, and a flagstedu2003-08-151-2/+2
| | | | | | | | | argument. old cred only calls user suser_ucred. this will allow future work to more flexibly implement the idea of a root process. looks like something i saw in freebsd, but a little different. use of suser_ucred vs suser in file system code should be looked at again, for the moment semantics remain unchanged. review and input from art@ testing and further review miod@
* First round of __P removal in sysmillert2002-03-141-23/+23
|
* fix the commentmickey2001-02-031-2/+2
|
* new timeout, even not in genericmickey2001-02-031-10/+11
|
* Added wdt driver for the Industrial Computer Source PCI-WDT50x watchdogalex1999-04-281-0/+607
timers.