summaryrefslogtreecommitdiffstats
path: root/drivers/net/ixgbe/ixgbe_phy.c
diff options
context:
space:
mode:
authorDon Skidmore2010-12-09 07:55:14 +0100
committerJeff Kirsher2010-12-11 07:12:46 +0100
commit2b264909c660717a67da997a181a4a4f551ef9b6 (patch)
tree5fca15427d82cd3e1329d62e904c00c44609e0d3 /drivers/net/ixgbe/ixgbe_phy.c
parentixgb: Don't check for vlan group on transmit (diff)
downloadkernel-qcow2-linux-2b264909c660717a67da997a181a4a4f551ef9b6.tar.gz
kernel-qcow2-linux-2b264909c660717a67da997a181a4a4f551ef9b6.tar.xz
kernel-qcow2-linux-2b264909c660717a67da997a181a4a4f551ef9b6.zip
ixgbe: fix X540 phy id to correct value
The existing PHY ID for X540 was from early production hardware and is no longer correct. This patch corrects that. Signed-off-by: Don Skidmore <donald.c.skidmore@intel.com> Tested-by: Stephen Ko <stephen.s.ko@intel.com> Signed-off-by: Jeff Kirsher <jeffrey.t.kirsher@intel.com>
Diffstat (limited to 'drivers/net/ixgbe/ixgbe_phy.c')
-rw-r--r--drivers/net/ixgbe/ixgbe_phy.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/net/ixgbe/ixgbe_phy.c b/drivers/net/ixgbe/ixgbe_phy.c
index c445fbce56ee..8f7123e8fc0a 100644
--- a/drivers/net/ixgbe/ixgbe_phy.c
+++ b/drivers/net/ixgbe/ixgbe_phy.c
@@ -115,7 +115,7 @@ static enum ixgbe_phy_type ixgbe_get_phy_type_from_id(u32 phy_id)
case TN1010_PHY_ID:
phy_type = ixgbe_phy_tn;
break;
- case AQ1202_PHY_ID:
+ case X540_PHY_ID:
phy_type = ixgbe_phy_aq;
break;
case QT2022_PHY_ID: