Skip to content

Commit

Permalink
mt76: mt7615: fix max_nss in mt7615_eeprom_parse_hw_cap
Browse files Browse the repository at this point in the history
Fix u8 cast reading max_nss from MT_TOP_STRAP_STA register in
mt7615_eeprom_parse_hw_cap routine

Fixes: acf5457fd99db ("mt76: mt7615: read {tx,rx} mask from eeprom")
Signed-off-by: Lorenzo Bianconi <lorenzo@kernel.org>
  • Loading branch information
LorenzoBianconi authored and nbd168 committed Feb 7, 2020
1 parent d3af8bd commit 9c43417
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion mt7615/eeprom.c
Expand Up @@ -93,8 +93,9 @@ static int mt7615_check_eeprom(struct mt76_dev *dev)

static void mt7615_eeprom_parse_hw_cap(struct mt7615_dev *dev)
{
u8 val, *eeprom = dev->mt76.eeprom.data;
u8 *eeprom = dev->mt76.eeprom.data;
u8 tx_mask, rx_mask, max_nss;
u32 val;

val = FIELD_GET(MT_EE_NIC_WIFI_CONF_BAND_SEL,
eeprom[MT_EE_WIFI_CONF]);
Expand Down

0 comments on commit 9c43417

Please sign in to comment.