diff options
author | Yoshihiro Takahashi <nyan@FreeBSD.org> | 2001-10-24 14:46:40 +0000 |
---|---|---|
committer | Yoshihiro Takahashi <nyan@FreeBSD.org> | 2001-10-24 14:46:40 +0000 |
commit | 6cac891491b97eab61a1d170be2172050e4e7802 (patch) | |
tree | 7b65b1700e65f469476812a1f2bd54cb0ee86d9d /sys/modules/pmc | |
parent | 781a35df6bfac467b3f253a0e4eb25173bbe215a (diff) | |
download | src-6cac891491b97eab61a1d170be2172050e4e7802.tar.gz src-6cac891491b97eab61a1d170be2172050e4e7802.zip |
Added the pmc driver which supports power management controller of
old NEC PC-98NOTE.
Submitted by: chi@bd.mbn.or.jp (Chiharu Shibata)
MFC after: 1 week
Notes
Notes:
svn path=/head/; revision=85413
Diffstat (limited to 'sys/modules/pmc')
-rw-r--r-- | sys/modules/pmc/Makefile | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/sys/modules/pmc/Makefile b/sys/modules/pmc/Makefile new file mode 100644 index 000000000000..59994a0090c1 --- /dev/null +++ b/sys/modules/pmc/Makefile @@ -0,0 +1,13 @@ +# $FreeBSD$ + +.PATH: ${.CURDIR}/../../pc98/pc98 + +KMOD= pmc +SRCS= pmc.c +SRCS+= bus_if.h device_if.h isa_if.h + +.if ${MACHINE} == "pc98" +CFLAGS+= -DPC98 +.endif + +.include <bsd.kmod.mk> |