mirror of
https://github.com/torvalds/linux.git
synced 2026-01-25 15:03:52 +08:00
NFC: microread: Remove redundant assignment to variable err
In the case MICROREAD_CB_TYPE_READER_ALL clang reports a dead code
warning. The error code assigned to variable err is already passed
to async_cb(). The assignment is redundant and can be removed.
Addresses-Coverity: ("Unused value")
Signed-off-by: Nigel Christian <nigel.l.christian@gmail.com>
Reviewed-by: Krzysztof Kozlowski <krzysztof.kozlowski@canonical.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
committed by
David S. Miller
parent
686e8463ff
commit
e5432cc71a
@@ -364,7 +364,6 @@ static void microread_im_transceive_cb(void *context, struct sk_buff *skb,
|
||||
case MICROREAD_CB_TYPE_READER_ALL:
|
||||
if (err == 0) {
|
||||
if (skb->len == 0) {
|
||||
err = -EPROTO;
|
||||
kfree_skb(skb);
|
||||
info->async_cb(info->async_cb_context, NULL,
|
||||
-EPROTO);
|
||||
|
||||
Reference in New Issue
Block a user