aboutsummaryrefslogtreecommitdiff
path: root/sys/modules
diff options
context:
space:
mode:
authorJohn Baldwin <jhb@FreeBSD.org>2016-08-20 00:49:29 +0000
committerJohn Baldwin <jhb@FreeBSD.org>2016-08-20 00:49:29 +0000
commit21768fa9c008fbfb6d54d5706c56ac4149b68a0e (patch)
treefb63032e3dbb726185464471ae7542123aee9c7e /sys/modules
parentff59a463a31d201a07eaf1c64fc230165aa841f0 (diff)
downloadsrc-21768fa9c008fbfb6d54d5706c56ac4149b68a0e.tar.gz
src-21768fa9c008fbfb6d54d5706c56ac4149b68a0e.zip
Remove the ie(4) driver for Intel 82586 ISA Ethernet adapters.
This driver only supports 10Mb Ethernet using PIO (the hardware supports DMA, but the driver only does PIO). There are not any PCCard adapters supported by this driver, only ISA cards. In addition, it does not use bus_space but instead uses bcopy with volatile pointers triggering a host of warnings. (if_ie.c is one of 3 files always built with -Wno-error) Relnotes: yes
Notes
Notes: svn path=/head/; revision=304513
Diffstat (limited to 'sys/modules')
-rw-r--r--sys/modules/Makefile2
-rw-r--r--sys/modules/ie/Makefile11
2 files changed, 0 insertions, 13 deletions
diff --git a/sys/modules/Makefile b/sys/modules/Makefile
index 7395e7a584b3..81b96af78fec 100644
--- a/sys/modules/Makefile
+++ b/sys/modules/Makefile
@@ -141,7 +141,6 @@ SUBDIR= \
${_ibcs2} \
${_ichwd} \
${_ida} \
- ${_ie} \
if_bridge \
if_disc \
if_edsc \
@@ -705,7 +704,6 @@ _elink= elink
_glxiic= glxiic
_glxsb= glxsb
#_ibcs2= ibcs2
-_ie= ie
_mse= mse
_ncr= ncr
_ncv= ncv
diff --git a/sys/modules/ie/Makefile b/sys/modules/ie/Makefile
deleted file mode 100644
index d6c611de3480..000000000000
--- a/sys/modules/ie/Makefile
+++ /dev/null
@@ -1,11 +0,0 @@
-# $FreeBSD$
-#
-
-.PATH: ${.CURDIR}/../../dev/ie
-
-KMOD= if_ie
-SRCS= if_ie.c if_ie_isa.c \
- isa_if.h bus_if.h device_if.h
-WERROR=
-
-.include <bsd.kmod.mk>