Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 36d26d6b authored by Michael Hennerich's avatar Michael Hennerich Committed by Stefan Schmidt
Browse files

net: ieee802154: adf7242: Fix erroneous RX enable



Only enable RX mode if the netdev is opened.

Signed-off-by: default avatarMichael Hennerich <michael.hennerich@analog.com>
Signed-off-by: default avatarAlexandru Ardelean <alexandru.ardelean@analog.com>
Signed-off-by: default avatarStefan Schmidt <stefan@datenfreihafen.org>
parent 8f2fbc6c
Loading
Loading
Loading
Loading
+4 −1
Original line number Diff line number Diff line
@@ -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,