aboutsummaryrefslogtreecommitdiff
path: root/sys/modules/ndis
diff options
context:
space:
mode:
authorBill Paul <wpaul@FreeBSD.org>2004-03-07 02:49:06 +0000
committerBill Paul <wpaul@FreeBSD.org>2004-03-07 02:49:06 +0000
commitd329ad60356ac64b99070850e0319669ed940ec3 (patch)
treedf79482d38e8f2aa0c97025e5e25560eb1179c60 /sys/modules/ndis
parentcf5704e17b9112b2cd804a77be6837d7a9272e4a (diff)
downloadsrc-d329ad60356ac64b99070850e0319669ed940ec3.tar.gz
src-d329ad60356ac64b99070850e0319669ed940ec3.zip
Add preliminary support for PCMCIA devices in addition to PCI/cardbus.
if_ndis.c has been split into if_ndis_pci.c and if_ndis_pccard.c. The ndiscvt(8) utility should be able to parse device info for PCMCIA devices now. The ndis_alloc_amem() has moved from kern_ndis.c to if_ndis_pccard.c so that kern_ndis.c no longer depends on pccard. NOTE: this stuff is not guaranteed to work 100% correctly yet. So far I have been able to load/init my PCMCIA Cisco Aironet 340 card, but it crashes in the interrupt handler. The existing support for PCI/cardbus devices should still work as before.
Notes
Notes: svn path=/head/; revision=126706
Diffstat (limited to 'sys/modules/ndis')
-rw-r--r--sys/modules/ndis/Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/modules/ndis/Makefile b/sys/modules/ndis/Makefile
index fe9d308fd7a1..9d5380baeb4e 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 vnode_if.h
+SRCS+= opt_bdg.h device_if.h bus_if.h pci_if.h vnode_if.h
.include <bsd.kmod.mk>