diff options
author | Alexander Aring <alex.aring@gmail.com> | 2014-12-15 04:25:53 -0500 |
---|---|---|
committer | Marcel Holtmann <marcel@holtmann.org> | 2014-12-18 18:19:25 -0500 |
commit | 5f5c5c23e3b71110c0215f9ea20e5434b68871f1 (patch) | |
tree | a14179230738b08ebeff4e2be352d7de3aeaa7fa /drivers/net/ieee802154 | |
parent | ce261bc3ff376ef5e85b682c760326893ab22ba5 (diff) |
at86rf230: remove if branch
This patch removes an unnecessary if branch inside the tx complete
handler.
Signed-off-by: Alexander Aring <alex.aring@gmail.com>
Reviewed-by: Stefan Schmidt <s.schmidt@samsung.com>
Signed-off-by: Marcel Holtmann <marcel@holtmann.org>
Diffstat (limited to 'drivers/net/ieee802154')
-rw-r--r-- | drivers/net/ieee802154/at86rf230.c | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/drivers/net/ieee802154/at86rf230.c b/drivers/net/ieee802154/at86rf230.c index 2f66b8a81acd..59209f35ec6b 100644 --- a/drivers/net/ieee802154/at86rf230.c +++ b/drivers/net/ieee802154/at86rf230.c | |||
@@ -714,10 +714,7 @@ at86rf230_tx_complete(void *context) | |||
714 | 714 | ||
715 | enable_irq(lp->spi->irq); | 715 | enable_irq(lp->spi->irq); |
716 | 716 | ||
717 | if (lp->max_frame_retries <= 0) | 717 | ieee802154_xmit_complete(lp->hw, skb, !lp->tx_aret); |
718 | ieee802154_xmit_complete(lp->hw, skb, true); | ||
719 | else | ||
720 | ieee802154_xmit_complete(lp->hw, skb, false); | ||
721 | } | 718 | } |
722 | 719 | ||
723 | static void | 720 | static void |