projects
/
linux.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
f0da471
)
ieee802154: cc2520: add rc code in cc2520_tx()
author
Li Qiong
<liqiong@nfschina.com>
Mon, 29 Aug 2022 07:12:59 +0000
(15:12 +0800)
committer
Stefan Schmidt
<stefan@datenfreihafen.org>
Mon, 29 Aug 2022 09:10:22 +0000
(11:10 +0200)
The rc code is 0 at the error path "status & CC2520_STATUS_TX_UNDERFLOW".
Assign rc code with '-EINVAL' at this error path to fix it.
Signed-off-by: Li Qiong <liqiong@nfschina.com>
Link:
https://lore.kernel.org/r/20220829071259.18330-1-liqiong@nfschina.com
Signed-off-by: Stefan Schmidt <stefan@datenfreihafen.org>
drivers/net/ieee802154/cc2520.c
patch
|
blob
|
history
diff --git
a/drivers/net/ieee802154/cc2520.c
b/drivers/net/ieee802154/cc2520.c
index 1e1f40f628a028a234c017f9f75c81afaf37aa52..c69b87d3837dad4e4f34c9936274013671fdfb42 100644
(file)
--- a/
drivers/net/ieee802154/cc2520.c
+++ b/
drivers/net/ieee802154/cc2520.c
@@
-504,6
+504,7
@@
cc2520_tx(struct ieee802154_hw *hw, struct sk_buff *skb)
goto err_tx;
if (status & CC2520_STATUS_TX_UNDERFLOW) {
+ rc = -EINVAL;
dev_err(&priv->spi->dev, "cc2520 tx underflow exception\n");
goto err_tx;
}