aboutsummaryrefslogtreecommitdiff
path: root/sys/modules
diff options
context:
space:
mode:
authorDag-Erling Smørgrav <des@FreeBSD.org>2004-05-11 18:21:38 +0000
committerDag-Erling Smørgrav <des@FreeBSD.org>2004-05-11 18:21:38 +0000
commitcae8da61643343040642d1684c4d1415431003b8 (patch)
tree899254c3304f79b550d4dae93deddf54ca3ba874 /sys/modules
parentb3eaeb0b24970667cef66b40e247a1800033797b (diff)
downloadsrc-cae8da61643343040642d1684c4d1415431003b8.tar.gz
src-cae8da61643343040642d1684c4d1415431003b8.zip
Add a driver for the watchdog timer function present on the LPC interface
bridge in Intel ICH-series chipsets. The original implementation was by W. Daryl Hawkins of Texas A&M, but I have made substantial modifications.
Notes
Notes: svn path=/head/; revision=129124
Diffstat (limited to 'sys/modules')
-rw-r--r--sys/modules/Makefile2
-rw-r--r--sys/modules/ichwd/Makefile8
2 files changed, 10 insertions, 0 deletions
diff --git a/sys/modules/Makefile b/sys/modules/Makefile
index e4e501c010f6..e3e06cfd3cc4 100644
--- a/sys/modules/Makefile
+++ b/sys/modules/Makefile
@@ -83,6 +83,7 @@ SUBDIR= ${_3dfx} \
${_hme} \
${_i2c} \
${_ibcs2} \
+ ${_ichwd} \
${_ida} \
${_idt} \
${_ie} \
@@ -300,6 +301,7 @@ _fe= fe
_hfa= hfa
_i2c= i2c
_ibcs2= ibcs2
+_ichwd= ichwd
_ie= ie
_linprocfs= linprocfs
_linux= linux
diff --git a/sys/modules/ichwd/Makefile b/sys/modules/ichwd/Makefile
new file mode 100644
index 000000000000..880ec82a28ef
--- /dev/null
+++ b/sys/modules/ichwd/Makefile
@@ -0,0 +1,8 @@
+# $FreeBSD$
+
+.PATH: ${.CURDIR}/../../dev/ichwd
+
+KMOD= ichwd
+SRCS= ichwd.c device_if.h bus_if.h pci_if.h
+
+.include <bsd.kmod.mk>