mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-12-18 02:46:46 +07:00
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: Don Skidmore <donald.c.skidmore@intel.com> Signed-off-by: Jeff Kirsher <jeffrey.t.kirsher@intel.com>
This commit is contained in:
parent
470739b563
commit
5f1c3589b0
@ -389,7 +389,8 @@ 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 X550_PHY_ID:
|
||||
case X550_PHY_ID2:
|
||||
case X550_PHY_ID3:
|
||||
case X540_PHY_ID:
|
||||
phy_type = ixgbe_phy_aq;
|
||||
break;
|
||||
|
@ -1377,7 +1377,8 @@ struct ixgbe_thermal_sensor_data {
|
||||
#define TN1010_PHY_ID 0x00A19410
|
||||
#define TNX_FW_REV 0xB
|
||||
#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_ID2 0x01540250
|
||||
#define QT2022_PHY_ID 0x0043A400
|
||||
|
Loading…
Reference in New Issue
Block a user