Skip to content

Commit

Permalink
mt76: mt7615: fix MT_INT_TX_DONE_ALL definition for MT7622
Browse files Browse the repository at this point in the history
MT7622 uses more interrupt bits for queue tx completion events.
Enabling those extra bits is harmless on MT7615

Co-developed-by: Shayne Chen <shayne.chen@mediatek.com>
Co-developed-by: Ryder Lee <ryder.lee@mediatek.com>
Signed-off-by: Felix Fietkau <nbd@nbd.name>
  • Loading branch information
Felix Fietkau committed Feb 14, 2020
1 parent 4e56972 commit 853fb35
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion drivers/net/wireless/mediatek/mt76/mt7615/regs.h
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@

#define MT_INT_RX_DONE(_n) BIT(_n)
#define MT_INT_RX_DONE_ALL GENMASK(1, 0)
#define MT_INT_TX_DONE_ALL GENMASK(7, 4)
#define MT_INT_TX_DONE_ALL GENMASK(19, 4)
#define MT_INT_TX_DONE(_n) BIT((_n) + 4)

#define MT_WPDMA_GLO_CFG MT_HIF(0x208)
Expand Down

0 comments on commit 853fb35

Please sign in to comment.