Skip to content

Commit

Permalink
mt76x0: pci: fix ACS support
Browse files Browse the repository at this point in the history
Fix Automatic Channel Selection (ACS) support in mt76x0e driver
configuring properly MT_CH_TIME_CFG register

Fixes: 6250318694ca ("mt76x0: pci: add get_survey support")
Signed-off-by: Lorenzo Bianconi <lorenzo.bianconi@redhat.com>
  • Loading branch information
LorenzoBianconi authored and nbd168 committed Dec 28, 2018
1 parent 6be90b6 commit 40dad32
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions mt76x0/pci.c
Expand Up @@ -141,6 +141,14 @@ static int mt76x0e_register_device(struct mt76x02_dev *dev)
mt76_clear(dev, 0x110, BIT(9));
mt76_set(dev, MT_MAX_LEN_CFG, BIT(13));

mt76_wr(dev, MT_CH_TIME_CFG,
MT_CH_TIME_CFG_TIMER_EN |
MT_CH_TIME_CFG_TX_AS_BUSY |
MT_CH_TIME_CFG_RX_AS_BUSY |
MT_CH_TIME_CFG_NAV_AS_BUSY |
MT_CH_TIME_CFG_EIFS_AS_BUSY |
FIELD_PREP(MT_CH_TIME_CFG_CH_TIMER_CLR, 1));

err = mt76x0_register_device(dev);
if (err < 0)
return err;
Expand Down

0 comments on commit 40dad32

Please sign in to comment.