diff options
author | Miquel Raynal <miquel.raynal@bootlin.com> | 2022-04-07 13:09:01 +0300 |
---|---|---|
committer | Stefan Schmidt <stefan@datenfreihafen.org> | 2022-04-25 21:52:22 +0300 |
commit | 35f34ee102a5b2376f4b4700ac017b8f2770e754 (patch) | |
tree | f9bfd5f4e8a4b16ea70e7dc720e440565273a78b | |
parent | 6ec9630b1abe7622da75fd6559e3e9468655b96b (diff) | |
download | linux-35f34ee102a5b2376f4b4700ac017b8f2770e754.tar.xz |
net: ieee802154: atusb: Call _xmit_hw_error() upon transmission error
ieee802154_xmit_hw_error() is the right helper to call when a transmission
has failed for a non-determined (and probably not IEEE802.15.4 specific)
reason. Let's use this helper instead of open-coding it.
Signed-off-by: Miquel Raynal <miquel.raynal@bootlin.com>
Acked-by: Alexander Aring <aahringo@redhat.com>
Link: https://lore.kernel.org/r/20220407100903.1695973-9-miquel.raynal@bootlin.com
Signed-off-by: Stefan Schmidt <stefan@datenfreihafen.org>
-rw-r--r-- | drivers/net/ieee802154/atusb.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/drivers/net/ieee802154/atusb.c b/drivers/net/ieee802154/atusb.c index 9b41c7654f6b..2c338783893d 100644 --- a/drivers/net/ieee802154/atusb.c +++ b/drivers/net/ieee802154/atusb.c @@ -206,9 +206,7 @@ static void atusb_tx_done(struct atusb *atusb, u8 seq) * unlikely case now that seq == expect is then true, but can * happen and fail with a tx_skb = NULL; */ - ieee802154_wake_queue(atusb->hw); - if (atusb->tx_skb) - dev_kfree_skb_irq(atusb->tx_skb); + ieee802154_xmit_hw_error(atusb->hw, atusb->tx_skb); } } |