aboutsummaryrefslogtreecommitdiff
path: root/sys/modules/em
diff options
context:
space:
mode:
authorJack F Vogel <jfv@FreeBSD.org>2008-02-29 21:50:11 +0000
committerJack F Vogel <jfv@FreeBSD.org>2008-02-29 21:50:11 +0000
commitf75ef9e44f102b517668860655520e3d35280c0c (patch)
tree00bc0715578ebc3c97d9ef9ef734d71025ba3a9d /sys/modules/em
parent5ce09a9e9c6e5950172f054c2dd22fe8d09f77eb (diff)
downloadsrc-f75ef9e44f102b517668860655520e3d35280c0c.tar.gz
src-f75ef9e44f102b517668860655520e3d35280c0c.zip
This change introduces a split to the Intel E1000 driver, now rather than
just em, there is an igb driver (this follows behavior with our Linux drivers). All adapters up to the 82575 are supported in em, and new client/desktop support will continue to be in that adapter. The igb driver is for new server NICs like the 82575 and its followons. Advanced features for virtualization and performance will be in this driver. Also, both drivers now have shared code that is up to the latest we have released. Some stylistic changes as well. Enjoy :)
Notes
Notes: svn path=/head/; revision=176667
Diffstat (limited to 'sys/modules/em')
-rw-r--r--sys/modules/em/Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/modules/em/Makefile b/sys/modules/em/Makefile
index 401f448e63a4..b2eadbdc2c50 100644
--- a/sys/modules/em/Makefile
+++ b/sys/modules/em/Makefile
@@ -5,7 +5,7 @@ SRCS = device_if.h bus_if.h pci_if.h opt_bdg.h
SRCS += if_em.c $(SHARED_SRCS)
SHARED_SRCS = e1000_api.c e1000_phy.c e1000_nvm.c e1000_mac.c e1000_manage.c
SHARED_SRCS += e1000_80003es2lan.c e1000_82542.c e1000_82541.c e1000_82543.c
-SHARED_SRCS += e1000_82540.c e1000_ich8lan.c e1000_82571.c e1000_82575.c
+SHARED_SRCS += e1000_82540.c e1000_ich8lan.c e1000_82571.c
CFLAGS+= -I${.CURDIR}/../../dev/em