aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/net/ieee802154
diff options
context:
space:
mode:
authorMichael Hennerich <michael.hennerich@analog.com>2018-06-25 16:49:51 +0300
committerStefan Schmidt <stefan@datenfreihafen.org>2018-07-09 10:53:11 +0200
commit36d26d6b6208399070a9d7993534fef9fc26b1ba (patch)
tree73405ad42761f8a697f8fadbd4a9c3b044fa5a09 /drivers/net/ieee802154
parentieee802154: fakelb: switch from BUG_ON() to WARN_ON() on problem (diff)
downloadlinux-dev-36d26d6b6208399070a9d7993534fef9fc26b1ba.tar.xz
linux-dev-36d26d6b6208399070a9d7993534fef9fc26b1ba.zip
net: ieee802154: adf7242: Fix erroneous RX enable
Only enable RX mode if the netdev is opened. Signed-off-by: Michael Hennerich <michael.hennerich@analog.com> Signed-off-by: Alexandru Ardelean <alexandru.ardelean@analog.com> Signed-off-by: Stefan Schmidt <stefan@datenfreihafen.org>
Diffstat (limited to 'drivers/net/ieee802154')
-rw-r--r--drivers/net/ieee802154/adf7242.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/drivers/net/ieee802154/adf7242.c b/drivers/net/ieee802154/adf7242.c
index 64f1b1e77bc0..c3da43191f70 100644
--- a/drivers/net/ieee802154/adf7242.c
+++ b/drivers/net/ieee802154/adf7242.c
@@ -719,7 +719,10 @@ static int adf7242_channel(struct ieee802154_hw *hw, u8 page, u8 channel)
adf7242_write_reg(lp, REG_CH_FREQ1, freq >> 8);
adf7242_write_reg(lp, REG_CH_FREQ2, freq >> 16);
- return adf7242_cmd(lp, CMD_RC_RX);
+ if (test_bit(FLAG_START, &lp->flags))
+ return adf7242_cmd_rx(lp);
+ else
+ return adf7242_cmd(lp, CMD_RC_PHY_RDY);
}
static int adf7242_set_hw_addr_filt(struct ieee802154_hw *hw,