summaryrefslogtreecommitdiffstats
path: root/drivers/net/ixgbe/Makefile
diff options
context:
space:
mode:
authorPJ Waskiewicz2009-02-27 16:45:05 +0100
committerDavid S. Miller2009-03-01 09:24:36 +0100
commite8e26350f114fa212e277ea02332d9347c59865d (patch)
treee5356ae1e62587c5fd128800c361fb1bf873772c /drivers/net/ixgbe/Makefile
parentixgbe: Add DCB for 82599, remove BCN support (diff)
downloadkernel-qcow2-linux-e8e26350f114fa212e277ea02332d9347c59865d.tar.gz
kernel-qcow2-linux-e8e26350f114fa212e277ea02332d9347c59865d.tar.xz
kernel-qcow2-linux-e8e26350f114fa212e277ea02332d9347c59865d.zip
ixgbe: Add 82599 device id's, hook it up into the main driver.
With the hardware-specific code in place, add all supported device id's, along with base driver changes to enable 82599 devices. The devices being enabled are: 8086:10f7: 82599EB 10 Gigabit KX4 Network Connection 8086:10fb: 82599EB 10 Gigabit Network Connection The device 8086:10fb is a fully-pluggable SFP+ NIC. Signed-off-by: Peter P Waskiewicz Jr <peter.p.waskiewicz.jr@intel.com> Signed-off-by: Jeff Kirsher <jeffrey.t.kirsher@intel.com> Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/net/ixgbe/Makefile')
-rw-r--r--drivers/net/ixgbe/Makefile5
1 files changed, 3 insertions, 2 deletions
diff --git a/drivers/net/ixgbe/Makefile b/drivers/net/ixgbe/Makefile
index f6061950f5d1..b3f8208ec7be 100644
--- a/drivers/net/ixgbe/Makefile
+++ b/drivers/net/ixgbe/Makefile
@@ -33,6 +33,7 @@
obj-$(CONFIG_IXGBE) += ixgbe.o
ixgbe-objs := ixgbe_main.o ixgbe_common.o ixgbe_ethtool.o \
- ixgbe_82598.o ixgbe_phy.o
+ ixgbe_82599.o ixgbe_82598.o ixgbe_phy.o
-ixgbe-$(CONFIG_IXGBE_DCB) += ixgbe_dcb.o ixgbe_dcb_82598.o ixgbe_dcb_nl.o
+ixgbe-$(CONFIG_IXGBE_DCB) += ixgbe_dcb.o ixgbe_dcb_82598.o \
+ ixgbe_dcb_82599.o ixgbe_dcb_nl.o