Commit 7241069f authored by Sasha Neftin's avatar Sasha Neftin Committed by Tony Nguyen

igc: Remove unused phy_type enum

Complete to commit 8e153faf ("igc: Remove unused phy type")
i225 parts have only one PHY. There is no point to use phy_type enum.
Clean up the code accordingly, and get rid of the unused enum lines.
Signed-off-by: default avatarSasha Neftin <sasha.neftin@intel.com>
Tested-by: default avatarNaama Meir <naamax.meir@linux.intel.com>
Signed-off-by: default avatarTony Nguyen <anthony.l.nguyen@intel.com>
parent d098538e
...@@ -182,8 +182,6 @@ static s32 igc_init_phy_params_base(struct igc_hw *hw) ...@@ -182,8 +182,6 @@ static s32 igc_init_phy_params_base(struct igc_hw *hw)
igc_check_for_copper_link(hw); igc_check_for_copper_link(hw);
phy->type = igc_phy_i225;
out: out:
return ret_val; return ret_val;
} }
......
...@@ -53,11 +53,6 @@ enum igc_mac_type { ...@@ -53,11 +53,6 @@ enum igc_mac_type {
igc_num_macs /* List is 1-based, so subtract 1 for true count. */ igc_num_macs /* List is 1-based, so subtract 1 for true count. */
}; };
enum igc_phy_type {
igc_phy_unknown = 0,
igc_phy_i225,
};
enum igc_media_type { enum igc_media_type {
igc_media_type_unknown = 0, igc_media_type_unknown = 0,
igc_media_type_copper = 1, igc_media_type_copper = 1,
...@@ -138,8 +133,6 @@ struct igc_nvm_info { ...@@ -138,8 +133,6 @@ struct igc_nvm_info {
struct igc_phy_info { struct igc_phy_info {
struct igc_phy_operations ops; struct igc_phy_operations ops;
enum igc_phy_type type;
u32 addr; u32 addr;
u32 id; u32 id;
u32 reset_delay_us; /* in usec */ u32 reset_delay_us; /* in usec */
......
...@@ -148,17 +148,11 @@ void igc_power_down_phy_copper(struct igc_hw *hw) ...@@ -148,17 +148,11 @@ void igc_power_down_phy_copper(struct igc_hw *hw)
s32 igc_check_downshift(struct igc_hw *hw) s32 igc_check_downshift(struct igc_hw *hw)
{ {
struct igc_phy_info *phy = &hw->phy; struct igc_phy_info *phy = &hw->phy;
s32 ret_val;
switch (phy->type) { /* speed downshift not supported */
case igc_phy_i225: phy->speed_downgraded = false;
default:
/* speed downshift not supported */
phy->speed_downgraded = false;
ret_val = 0;
}
return ret_val; return 0;
} }
/** /**
......
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