Commit 38961294 authored by Alexander Aring's avatar Alexander Aring Committed by Marcel Holtmann

atusb: don't change csma settings while set channel

This patch fixes the behaviour to not overwrite csma settings when
set channel afterwards.

Cc: Stefan Schmidt <stefan@osg.samsung.com>
Acked-by: default avatarStefan Schmidt <stefan@osg.samsung.com>
Signed-off-by: default avatarAlexander Aring <aar@pengutronix.de>
Signed-off-by: default avatarMarcel Holtmann <marcel@holtmann.org>
parent 9e262f50
...@@ -366,11 +366,7 @@ static int atusb_channel(struct ieee802154_hw *hw, u8 page, u8 channel) ...@@ -366,11 +366,7 @@ static int atusb_channel(struct ieee802154_hw *hw, u8 page, u8 channel)
struct atusb *atusb = hw->priv; struct atusb *atusb = hw->priv;
int ret; int ret;
/* This implicitly sets the CCA (Clear Channel Assessment) mode to 0, ret = atusb_write_subreg(atusb, SR_CHANNEL, channel);
* "Mode 3a, Carrier sense OR energy above threshold".
* We should probably make this configurable. @@@
*/
ret = atusb_write_reg(atusb, RG_PHY_CC_CCA, channel);
if (ret < 0) if (ret < 0)
return ret; return ret;
msleep(1); /* @@@ ugly synchronization */ msleep(1); /* @@@ ugly synchronization */
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment