aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAlexander Aring <alex.aring@gmail.com>2015-04-30 11:45:01 -0400
committerMarcel Holtmann <marcel@holtmann.org>2015-04-30 12:48:10 -0400
commit2f8cdd95097bdcd8d1e2b02edb0a9deb1e034a7e (patch)
tree50abf418b7d47369f77675832822d1e57d8a9a9b
parent3b951ca7d2772834c7ca828f0fe5745480426982 (diff)
at86rf230: remove unnecessary tx state change
All supported transceivers can do a valid state change from TRX_OFF to AACK_ON. This patch removes the state change chain from TRX_OFF -> TX_ON -> AACK_ON instead we doing a directly state change from TRX_OFF to AACK_ON. Signed-off-by: Alexander Aring <alex.aring@gmail.com> Signed-off-by: Marcel Holtmann <marcel@holtmann.org>
-rw-r--r--drivers/net/ieee802154/at86rf230.c16
1 files changed, 3 insertions, 13 deletions
diff --git a/drivers/net/ieee802154/at86rf230.c b/drivers/net/ieee802154/at86rf230.c
index f99dce5c64da..6285145545a7 100644
--- a/drivers/net/ieee802154/at86rf230.c
+++ b/drivers/net/ieee802154/at86rf230.c
@@ -781,16 +781,6 @@ at86rf230_tx_on(void *context)
781} 781}
782 782
783static void 783static void
784at86rf230_tx_trac_error(void *context)
785{
786 struct at86rf230_state_change *ctx = context;
787 struct at86rf230_local *lp = ctx->lp;
788
789 at86rf230_async_state_change(lp, ctx, STATE_TX_ON,
790 at86rf230_tx_on, true);
791}
792
793static void
794at86rf230_tx_trac_check(void *context) 784at86rf230_tx_trac_check(void *context)
795{ 785{
796 struct at86rf230_state_change *ctx = context; 786 struct at86rf230_state_change *ctx = context;
@@ -799,12 +789,12 @@ at86rf230_tx_trac_check(void *context)
799 const u8 trac = (buf[1] & 0xe0) >> 5; 789 const u8 trac = (buf[1] & 0xe0) >> 5;
800 790
801 /* If trac status is different than zero we need to do a state change 791 /* If trac status is different than zero we need to do a state change
802 * to STATE_FORCE_TRX_OFF then STATE_TX_ON to recover the transceiver 792 * to STATE_FORCE_TRX_OFF then STATE_RX_AACK_ON to recover the
803 * state to TX_ON. 793 * transceiver.
804 */ 794 */
805 if (trac) 795 if (trac)
806 at86rf230_async_state_change(lp, ctx, STATE_FORCE_TRX_OFF, 796 at86rf230_async_state_change(lp, ctx, STATE_FORCE_TRX_OFF,
807 at86rf230_tx_trac_error, true); 797 at86rf230_tx_on, true);
808 else 798 else
809 at86rf230_tx_on(context); 799 at86rf230_tx_on(context);
810} 800}