diff options
author | Mike Belopuhov <mikeb@cvs.openbsd.org> | 2012-08-06 21:07:53 +0000 |
---|---|---|
committer | Mike Belopuhov <mikeb@cvs.openbsd.org> | 2012-08-06 21:07:53 +0000 |
commit | 244cccfed6ad64fc3b8399ca59ada5b2f19a9290 (patch) | |
tree | 4b8c542dd4b26bc637f5a84f426db1431f0d49df /sys/dev/pci/ixgbe.h | |
parent | 082fbc62061b14dfbc3fd5bb7f007bc828afc556 (diff) |
Add support for 10Gb ethernet cards based on the Intel X540 chipset.
The code was obtained from FreeBSD and tested on the hardware kindly
donated by Tony Sarendal <tony () polarcap ! org>. Thanks a lot!
ok jsg
Diffstat (limited to 'sys/dev/pci/ixgbe.h')
-rw-r--r-- | sys/dev/pci/ixgbe.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sys/dev/pci/ixgbe.h b/sys/dev/pci/ixgbe.h index bd0318c8b61..dae9210f9d2 100644 --- a/sys/dev/pci/ixgbe.h +++ b/sys/dev/pci/ixgbe.h @@ -1,4 +1,4 @@ -/* $OpenBSD: ixgbe.h,v 1.9 2012/07/29 13:49:03 mikeb Exp $ */ +/* $OpenBSD: ixgbe.h,v 1.10 2012/08/06 21:07:52 mikeb Exp $ */ /****************************************************************************** @@ -253,6 +253,7 @@ uint32_t ixgbe_atr_compute_hash_82599(union ixgbe_atr_input *input, uint32_t key int32_t ixgbe_init_ops_82598(struct ixgbe_hw *hw); int32_t ixgbe_init_ops_82599(struct ixgbe_hw *hw); +int32_t ixgbe_init_ops_X540(struct ixgbe_hw *hw); /* PHY */ int32_t ixgbe_init_phy_ops_generic(struct ixgbe_hw *hw); |