diff options
author | wpaul <wpaul@FreeBSD.org> | 2004-01-09 03:57:00 +0000 |
---|---|---|
committer | wpaul <wpaul@FreeBSD.org> | 2004-01-09 03:57:00 +0000 |
commit | f9d080ddf936154f9b5ebc047645f4de77da8eb6 (patch) | |
tree | 9370c18b15c461a2fb40cd04a84acd05db4562c2 /sys/modules | |
parent | ab0602c74b5aee253176583786f487da55d66907 (diff) | |
download | FreeBSD-src-f9d080ddf936154f9b5ebc047645f4de77da8eb6.zip FreeBSD-src-f9d080ddf936154f9b5ebc047645f4de77da8eb6.tar.gz |
Implement NdisOpenFile()/NdisCloseFile()/NdisMapFile()/NdisUnmapFile().
By default, we search for files in /compat/ndis. This can be changed with
a systcl. These routines are used by some drivers which need to download
firmware or microcode into their respective devices during initialization.
Also, remove extraneous newlines from the 'built-in' sysctl/registry
variables.
Diffstat (limited to 'sys/modules')
-rw-r--r-- | sys/modules/ndis/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/modules/ndis/Makefile b/sys/modules/ndis/Makefile index f17c0e8..fe9d308 100644 --- a/sys/modules/ndis/Makefile +++ b/sys/modules/ndis/Makefile @@ -4,6 +4,6 @@ KMOD= ndis SRCS= subr_pe.c subr_ndis.c subr_hal.c subr_ntoskrnl.c kern_ndis.c -SRCS+= opt_bdg.h device_if.h bus_if.h pci_if.h card_if.h +SRCS+= opt_bdg.h device_if.h bus_if.h pci_if.h card_if.h vnode_if.h .include <bsd.kmod.mk> |