diff options
author | Sasha Neftin <[email protected]> | 2021-07-18 12:42:09 +0300 |
---|---|---|
committer | Tony Nguyen <[email protected]> | 2021-10-29 09:51:21 -0700 |
commit | 8643d0b6b367fb97d8220e62719205d7398730b2 (patch) | |
tree | e81dd823bf4d43a420ac2003dc16db76e705784a | |
parent | 28131d896d6d316bc1f6f305d1a9ed6d96c3f2a1 (diff) |
igc: Remove media type checking on the PHY initialization
i225 devices only have copper phy media type. There is no point in
checking phy media type during the phy initialization. This patch cleans
up a pointless check.
Signed-off-by: Sasha Neftin <[email protected]>
Tested-by: Dvora Fuxbrumer <[email protected]>
Signed-off-by: Tony Nguyen <[email protected]>
-rw-r--r-- | drivers/net/ethernet/intel/igc/igc_base.c | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/drivers/net/ethernet/intel/igc/igc_base.c b/drivers/net/ethernet/intel/igc/igc_base.c index 84f142f5e472..30b1f02cef15 100644 --- a/drivers/net/ethernet/intel/igc/igc_base.c +++ b/drivers/net/ethernet/intel/igc/igc_base.c @@ -158,11 +158,6 @@ static s32 igc_init_phy_params_base(struct igc_hw *hw) struct igc_phy_info *phy = &hw->phy; s32 ret_val = 0; - if (hw->phy.media_type != igc_media_type_copper) { - phy->type = igc_phy_none; - goto out; - } - phy->autoneg_mask = AUTONEG_ADVERTISE_SPEED_DEFAULT_2500; phy->reset_delay_us = 100; |