Browse Source

ieee802154: mrf24j40: fix incorrect mask in mrf24j40_stop

It seems that this is a copy/paste error and the proper bit masking is:
BIT_TXNIE | BIT_RXIE

This issue was detected with the help of Coccinelle.

Reported-by: Julia Lawall <julia.lawall@lip6.fr>
Signed-off-by: Gustavo A. R. Silva <garsilva@embeddedor.com>
Fixes: 7d840545e5b9 ("mrf24j40: replace magic numbers")
Acked-by: Alan Ott <alan@signal11.us>
Signed-off-by: Stefan Schmidt <stefan@osg.samsung.com>
Gustavo A. R. Silva 7 years ago
parent
commit
0be7fc7e08
1 changed files with 1 additions and 1 deletions
  1. 1 1
      drivers/net/ieee802154/mrf24j40.c

+ 1 - 1
drivers/net/ieee802154/mrf24j40.c

@@ -635,7 +635,7 @@ static void mrf24j40_stop(struct ieee802154_hw *hw)
 
 
 	/* Set TXNIE and RXIE. Disable Interrupts */
 	/* Set TXNIE and RXIE. Disable Interrupts */
 	regmap_update_bits(devrec->regmap_short, REG_INTCON,
 	regmap_update_bits(devrec->regmap_short, REG_INTCON,
-			   BIT_TXNIE | BIT_TXNIE, BIT_TXNIE | BIT_TXNIE);
+			   BIT_TXNIE | BIT_RXIE, BIT_TXNIE | BIT_RXIE);
 }
 }
 
 
 static int mrf24j40_set_channel(struct ieee802154_hw *hw, u8 page, u8 channel)
 static int mrf24j40_set_channel(struct ieee802154_hw *hw, u8 page, u8 channel)