diff options
author | Malli Chilakala <mallikarjuna.chilakala@intel.com> | 2005-06-18 02:42:42 +0200 |
---|---|---|
committer | Jeff Garzik <jgarzik@pobox.com> | 2005-06-27 06:34:25 +0200 |
commit | 4564327b46a8c6400cd10d6dd041f6b984539f88 (patch) | |
tree | dc34c7bbf962cc63d53eb75888b3253cb08ad315 | |
parent | [PATCH] e1000: Fixed register and loopback test failures with 82573 controllers (diff) | |
download | linux-4564327b46a8c6400cd10d6dd041f6b984539f88.tar.xz linux-4564327b46a8c6400cd10d6dd041f6b984539f88.zip |
[PATCH] e1000: Fixed the loopback test failure for 82573 based adapters
Fixed the loopback test failure for 82573 based adapters
Signed-off-by: Mallikarjuna R Chilakala <mallikarjuna.chilakala@intel.com>
Signed-off-by: Ganesh Venkatesan <ganesh.venkatesan@intel.com>
Signed-off-by: John Ronciak <john.ronciak@intel.com>
-rw-r--r-- | drivers/net/e1000/e1000_ethtool.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/net/e1000/e1000_ethtool.c b/drivers/net/e1000/e1000_ethtool.c index 58a1836f53fd..658d9bb6daf3 100644 --- a/drivers/net/e1000/e1000_ethtool.c +++ b/drivers/net/e1000/e1000_ethtool.c @@ -1234,6 +1234,7 @@ e1000_set_phy_loopback(struct e1000_adapter *adapter) case e1000_82541_rev_2: case e1000_82547: case e1000_82547_rev_2: + case e1000_82573: return e1000_integrated_phy_loopback(adapter); break; |