mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2026-05-07 16:17:41 -04:00
octeontx2-af: cn10k: mcs: Fix copy and paste bug in mcs_bbe_intr_handler()
This code accidentally uses the RX macro twice instead of the RX and TX.
Fixes: 6c635f78c4 ("octeontx2-af: cn10k: mcs: Handle MCS block interrupts")
Signed-off-by: Dan Carpenter <error27@gmail.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
committed by
David S. Miller
parent
764f848589
commit
badbda1a01
@@ -951,7 +951,7 @@ static void mcs_bbe_intr_handler(struct mcs *mcs, u64 intr, enum mcs_direction d
|
||||
else
|
||||
event.intr_mask = (dir == MCS_RX) ?
|
||||
MCS_BBE_RX_PLFIFO_OVERFLOW_INT :
|
||||
MCS_BBE_RX_PLFIFO_OVERFLOW_INT;
|
||||
MCS_BBE_TX_PLFIFO_OVERFLOW_INT;
|
||||
|
||||
/* Notify the lmac_id info which ran into BBE fatal error */
|
||||
event.lmac_id = i & 0x3ULL;
|
||||
|
||||
Reference in New Issue
Block a user