提交 a8d352d4 编写于 作者: A Alexander Aring 提交者: Marcel Holtmann

at86rf230: remove invalid backoff exponent check

This patch removes the invalid backoff exponent check from driver layer.
This is already handled by nl802154.
Signed-off-by: NAlexander Aring <alex.aring@gmail.com>
Signed-off-by: NMarcel Holtmann <marcel@holtmann.org>
上级 656a999e
...@@ -1167,7 +1167,7 @@ at86rf230_set_csma_params(struct ieee802154_hw *hw, u8 min_be, u8 max_be, ...@@ -1167,7 +1167,7 @@ at86rf230_set_csma_params(struct ieee802154_hw *hw, u8 min_be, u8 max_be,
struct at86rf230_local *lp = hw->priv; struct at86rf230_local *lp = hw->priv;
int rc; int rc;
if (min_be > max_be || max_be > 8 || retries > 5) if (retries > 5)
return -EINVAL; return -EINVAL;
rc = at86rf230_write_subreg(lp, SR_MIN_BE, min_be); rc = at86rf230_write_subreg(lp, SR_MIN_BE, min_be);
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册