diff options
author | Auke Kok <auke-jan.h.kok@intel.com> | 2007-08-09 14:09:34 -0700 |
---|---|---|
committer | Jeff Garzik <jeff@garzik.org> | 2007-08-14 01:54:47 -0400 |
commit | ce57a02c64052c3f1c62f30a902a937e6c316d88 (patch) | |
tree | 4212eea258dd7db88235a6f910d7fc1a48652f8c /drivers/net/e1000/e1000_ethtool.c | |
parent | 10a273a67343e1f317652d69b09a212ee0284b44 (diff) | |
download | op-kernel-dev-ce57a02c64052c3f1c62f30a902a937e6c316d88.zip op-kernel-dev-ce57a02c64052c3f1c62f30a902a937e6c316d88.tar.gz |
e1000: Add device IDs of new 82571 board variants
This patch adds support for 2 new board variants:
- A Quad port fiber 82571 board
- A blade version of the 82571 quad copper board
Signed-off-by: Auke Kok <auke-jan.h.kok@intel.com>
Signed-off-by: Jeff Garzik <jeff@garzik.org>
Diffstat (limited to 'drivers/net/e1000/e1000_ethtool.c')
-rw-r--r-- | drivers/net/e1000/e1000_ethtool.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/drivers/net/e1000/e1000_ethtool.c b/drivers/net/e1000/e1000_ethtool.c index c90c92e..4c3785c 100644 --- a/drivers/net/e1000/e1000_ethtool.c +++ b/drivers/net/e1000/e1000_ethtool.c @@ -1706,6 +1706,7 @@ static int e1000_wol_exclusion(struct e1000_adapter *adapter, struct ethtool_wol case E1000_DEV_ID_82545EM_COPPER: case E1000_DEV_ID_82546GB_QUAD_COPPER: case E1000_DEV_ID_82546GB_PCIE: + case E1000_DEV_ID_82571EB_SERDES_QUAD: /* these don't support WoL at all */ wol->supported = 0; break; @@ -1723,6 +1724,7 @@ static int e1000_wol_exclusion(struct e1000_adapter *adapter, struct ethtool_wol retval = 0; break; case E1000_DEV_ID_82571EB_QUAD_COPPER: + case E1000_DEV_ID_82571EB_QUAD_FIBER: case E1000_DEV_ID_82571EB_QUAD_COPPER_LOWPROFILE: case E1000_DEV_ID_82546GB_QUAD_COPPER_KSP3: /* quad port adapters only support WoL on port A */ |