diff options
author | Yang Yingliang <yangyingliang@huawei.com> | 2022-03-18 10:27:28 +0300 |
---|---|---|
committer | Jakub Kicinski <kuba@kernel.org> | 2022-03-19 07:41:51 +0300 |
commit | 800c326bfa9cee38f0e173733ce9f93492c84c8b (patch) | |
tree | ec0eb2c4fc9ab4e3a0f7f3b8511a02240d78e2f9 | |
parent | 49270afa037bcaf88133329ff7304f2945cb871c (diff) | |
download | linux-800c326bfa9cee38f0e173733ce9f93492c84c8b.tar.xz |
nfc: st21nfca: remove unnecessary skb check before kfree_skb()
The skb will be checked in kfree_skb(), so remove the outside check.
Signed-off-by: Yang Yingliang <yangyingliang@huawei.com>
Reviewed-by: Krzysztof Kozlowski <krzk@kernel.org>
Link: https://lore.kernel.org/r/20220318072728.2659578-1-yangyingliang@huawei.com
Signed-off-by: Jakub Kicinski <kuba@kernel.org>
-rw-r--r-- | drivers/nfc/st21nfca/i2c.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/drivers/nfc/st21nfca/i2c.c b/drivers/nfc/st21nfca/i2c.c index a86b5edfc7ce..42dc0e5eb161 100644 --- a/drivers/nfc/st21nfca/i2c.c +++ b/drivers/nfc/st21nfca/i2c.c @@ -570,8 +570,7 @@ static int st21nfca_hci_i2c_remove(struct i2c_client *client) if (phy->powered) st21nfca_hci_i2c_disable(phy); - if (phy->pending_skb) - kfree_skb(phy->pending_skb); + kfree_skb(phy->pending_skb); return 0; } |