NFC: nci: Remove redundant assignment to len
authorYang Li <yang.lee@linux.alibaba.com>
Tue, 1 Jun 2021 09:49:50 +0000 (17:49 +0800)
committerDavid S. Miller <davem@davemloft.net>
Tue, 1 Jun 2021 22:52:24 +0000 (15:52 -0700)
commit7cf85f8caa042db0e33d70dbd72d8b92b1051f93
treeeedc36932e41f9118ebc2fffde36d372dd15e034
parent52aa0b189288c5d44cb5f2500372e474d6623c18
NFC: nci: Remove redundant assignment to len

Variable 'len' is set to conn_info->max_pkt_payload_len but this
value is never read as it is overwritten with a new value later on,
hence it is a redundant assignment and can be removed.

Clean up the following clang-analyzer warning:

net/nfc/nci/hci.c:164:3: warning: Value stored to 'len' is never read
[clang-analyzer-deadcode.DeadStores]

Reported-by: Abaci Robot <abaci@linux.alibaba.com>
Signed-off-by: Yang Li <yang.lee@linux.alibaba.com>
Reviewed-by: Krzysztof Kozlowski <krzysztof.kozlowski@canonical.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
net/nfc/nci/hci.c