diff options
author | Alexander Aring <alex.aring@gmail.com> | 2014-12-10 15:33:14 +0100 |
---|---|---|
committer | Marcel Holtmann <marcel@holtmann.org> | 2014-12-19 00:19:24 +0100 |
commit | b48a7c1880e10be30a7b61db0108498693d41eb5 (patch) | |
tree | d0320c188bed198cccae8e0cc5e2b3fa49dcf1b5 | |
parent | nl802154: introduce support for cca settings (diff) | |
download | linux-b48a7c1880e10be30a7b61db0108498693d41eb5.tar.xz linux-b48a7c1880e10be30a7b61db0108498693d41eb5.zip |
at86rf230: add reset state cca handling
This patch adds the default cca setting after device reset for at86rf230
driver.
Signed-off-by: Alexander Aring <alex.aring@gmail.com>
Signed-off-by: Marcel Holtmann <marcel@holtmann.org>
-rw-r--r-- | drivers/net/ieee802154/at86rf230.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/drivers/net/ieee802154/at86rf230.c b/drivers/net/ieee802154/at86rf230.c index 1ac46ba41fd8..0626e7d09a72 100644 --- a/drivers/net/ieee802154/at86rf230.c +++ b/drivers/net/ieee802154/at86rf230.c @@ -1441,6 +1441,8 @@ at86rf230_detect_device(struct at86rf230_local *lp) IEEE802154_HW_TXPOWER | IEEE802154_HW_ARET | IEEE802154_HW_AFILT | IEEE802154_HW_PROMISCUOUS; + lp->hw->phy->cca.mode = NL802154_CCA_ENERGY; + switch (part) { case 2: chip = "at86rf230"; |