diff options
author | Alexander Aring <alex.aring@gmail.com> | 2015-04-30 11:44:59 -0400 |
---|---|---|
committer | Marcel Holtmann <marcel@holtmann.org> | 2015-04-30 12:48:10 -0400 |
commit | 2ad33244db816755a27dcdd312a70d966c85f0ee (patch) | |
tree | 83c538982b6033d093a58a27d6cb17ca045aa573 | |
parent | 5e8e01e262be1eeaae598be44b8e43b29aab842a (diff) |
at86rf230: move cal_timeout to state change
This patch moves the calculation timeout of TRX_OFF to RX_AACK_ON
handling to the async state change functionality. With this patch we can
do a reset of calculation timeout when others TRX_OFF to RX_AACK_ON
happens instead of doing this on interface up only.
Signed-off-by: Alexander Aring <alex.aring@gmail.com>
Reviewed-by: Varka Bhadram <varkabhadram@gmail.com>
Signed-off-by: Marcel Holtmann <marcel@holtmann.org>
-rw-r--r-- | drivers/net/ieee802154/at86rf230.c | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/drivers/net/ieee802154/at86rf230.c b/drivers/net/ieee802154/at86rf230.c index 9a41deb1966c..635878833936 100644 --- a/drivers/net/ieee802154/at86rf230.c +++ b/drivers/net/ieee802154/at86rf230.c | |||
@@ -611,6 +611,11 @@ at86rf230_async_state_delay(void *context) | |||
611 | switch (ctx->to_state) { | 611 | switch (ctx->to_state) { |
612 | case STATE_RX_AACK_ON: | 612 | case STATE_RX_AACK_ON: |
613 | tim = ktime_set(0, c->t_off_to_aack * NSEC_PER_USEC); | 613 | tim = ktime_set(0, c->t_off_to_aack * NSEC_PER_USEC); |
614 | /* state change from TRX_OFF to RX_AACK_ON to do a | ||
615 | * calibration, we need to reset the timeout for the | ||
616 | * next one. | ||
617 | */ | ||
618 | lp->cal_timeout = jiffies + AT86RF2XX_CAL_LOOP_TIMEOUT; | ||
614 | goto change; | 619 | goto change; |
615 | case STATE_TX_ON: | 620 | case STATE_TX_ON: |
616 | tim = ktime_set(0, c->t_off_to_tx_on * NSEC_PER_USEC); | 621 | tim = ktime_set(0, c->t_off_to_tx_on * NSEC_PER_USEC); |
@@ -1039,9 +1044,6 @@ at86rf230_ed(struct ieee802154_hw *hw, u8 *level) | |||
1039 | static int | 1044 | static int |
1040 | at86rf230_start(struct ieee802154_hw *hw) | 1045 | at86rf230_start(struct ieee802154_hw *hw) |
1041 | { | 1046 | { |
1042 | struct at86rf230_local *lp = hw->priv; | ||
1043 | |||
1044 | lp->cal_timeout = jiffies + AT86RF2XX_CAL_LOOP_TIMEOUT; | ||
1045 | return at86rf230_sync_state_change(hw->priv, STATE_RX_AACK_ON); | 1047 | return at86rf230_sync_state_change(hw->priv, STATE_RX_AACK_ON); |
1046 | } | 1048 | } |
1047 | 1049 | ||