Commit 5f1c3589 authored by Don Skidmore's avatar Don Skidmore Committed by Jeff Kirsher

ixgbe: Correct X550 phy ID

We were using an old Alpha version of the X550 phy ID.  This was leading
to unnecessary queries of the PHY.  I removed the old ID (which shouldn't
be on any HW) and add the two that are.
Signed-off-by: default avatarDon Skidmore <donald.c.skidmore@intel.com>
Signed-off-by: default avatarJeff Kirsher <jeffrey.t.kirsher@intel.com>
parent 470739b5
...@@ -389,7 +389,8 @@ static enum ixgbe_phy_type ixgbe_get_phy_type_from_id(u32 phy_id) ...@@ -389,7 +389,8 @@ static enum ixgbe_phy_type ixgbe_get_phy_type_from_id(u32 phy_id)
case TN1010_PHY_ID: case TN1010_PHY_ID:
phy_type = ixgbe_phy_tn; phy_type = ixgbe_phy_tn;
break; break;
case X550_PHY_ID: case X550_PHY_ID2:
case X550_PHY_ID3:
case X540_PHY_ID: case X540_PHY_ID:
phy_type = ixgbe_phy_aq; phy_type = ixgbe_phy_aq;
break; break;
......
...@@ -1377,7 +1377,8 @@ struct ixgbe_thermal_sensor_data { ...@@ -1377,7 +1377,8 @@ struct ixgbe_thermal_sensor_data {
#define TN1010_PHY_ID 0x00A19410 #define TN1010_PHY_ID 0x00A19410
#define TNX_FW_REV 0xB #define TNX_FW_REV 0xB
#define X540_PHY_ID 0x01540200 #define X540_PHY_ID 0x01540200
#define X550_PHY_ID 0x01540220 #define X550_PHY_ID2 0x01540223
#define X550_PHY_ID3 0x01540221
#define X557_PHY_ID 0x01540240 #define X557_PHY_ID 0x01540240
#define X557_PHY_ID2 0x01540250 #define X557_PHY_ID2 0x01540250
#define QT2022_PHY_ID 0x0043A400 #define QT2022_PHY_ID 0x0043A400
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment