Commit c04ab57d authored by Shayne Chen's avatar Shayne Chen Committed by Felix Fietkau

wifi: mt76: mt7996: remove unused eeprom band selection

Tri-band chipsets support one band on each a-die, so remove the unused
definition of eeprom band selection.
Signed-off-by: default avatarShayne Chen <shayne.chen@mediatek.com>
Signed-off-by: default avatarFelix Fietkau <nbd@nbd.name>
parent d0b6f86f
...@@ -138,10 +138,6 @@ static int mt7996_eeprom_parse_band_config(struct mt7996_phy *phy) ...@@ -138,10 +138,6 @@ static int mt7996_eeprom_parse_band_config(struct mt7996_phy *phy)
case MT_EE_BAND_SEL_6GHZ: case MT_EE_BAND_SEL_6GHZ:
phy->mt76->cap.has_6ghz = true; phy->mt76->cap.has_6ghz = true;
break; break;
case MT_EE_BAND_SEL_5GHZ_6GHZ:
phy->mt76->cap.has_5ghz = true;
phy->mt76->cap.has_6ghz = true;
break;
default: default:
ret = -EINVAL; ret = -EINVAL;
break; break;
......
...@@ -46,7 +46,6 @@ enum mt7996_eeprom_band { ...@@ -46,7 +46,6 @@ enum mt7996_eeprom_band {
MT_EE_BAND_SEL_2GHZ, MT_EE_BAND_SEL_2GHZ,
MT_EE_BAND_SEL_5GHZ, MT_EE_BAND_SEL_5GHZ,
MT_EE_BAND_SEL_6GHZ, MT_EE_BAND_SEL_6GHZ,
MT_EE_BAND_SEL_5GHZ_6GHZ,
}; };
static inline int static inline int
......
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