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

at86rf230: cleanup start and stop callbacks

This code cleanups the start and stop callbacks by removing hw->priv and
using the already dereferenced variable lp which is the same.
Signed-off-by: NAlexander Aring <alex.aring@gmail.com>
Signed-off-by: NMarcel Holtmann <marcel@holtmann.org>
上级 74ed9d98
......@@ -938,7 +938,7 @@ at86rf230_start(struct ieee802154_hw *hw)
at86rf230_awake(lp);
enable_irq(lp->spi->irq);
return at86rf230_sync_state_change(hw->priv, STATE_RX_AACK_ON);
return at86rf230_sync_state_change(lp, STATE_RX_AACK_ON);
}
static void
......@@ -947,7 +947,7 @@ at86rf230_stop(struct ieee802154_hw *hw)
struct at86rf230_local *lp = hw->priv;
u8 csma_seed[2];
at86rf230_sync_state_change(hw->priv, STATE_FORCE_TRX_OFF);
at86rf230_sync_state_change(lp, STATE_FORCE_TRX_OFF);
disable_irq(lp->spi->irq);
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册