summaryrefslogtreecommitdiffstats
path: root/drivers/crypto
diff options
context:
space:
mode:
authorYushan Zhou <katrinzhou@tencent.com>2022-11-22 15:49:00 +0800
committerHerbert Xu <herbert@gondor.apana.org.au>2022-12-02 18:12:39 +0800
commitbd71e0dced921e00599052b445f9a9f7916a5452 (patch)
tree77aa9035932ecc7892ee34f74fefded1e3f133bd /drivers/crypto
parent5b11d1a360ea23c80c6d4ec3f5986a788d0a0995 (diff)
downloadlinux-bd71e0dced921e00599052b445f9a9f7916a5452.tar.bz2
crypto: marvell/octeontx - remove redundant NULL check
release_firmware() checks whether firmware pointer is NULL. Remove the redundant NULL check in release_tar_archive(). Signed-off-by: Yushan Zhou <katrinzhou@tencent.com> Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
Diffstat (limited to 'drivers/crypto')
-rw-r--r--drivers/crypto/marvell/octeontx/otx_cptpf_ucode.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/drivers/crypto/marvell/octeontx/otx_cptpf_ucode.c b/drivers/crypto/marvell/octeontx/otx_cptpf_ucode.c
index df9c2b8747e6..c4250e5fcf8f 100644
--- a/drivers/crypto/marvell/octeontx/otx_cptpf_ucode.c
+++ b/drivers/crypto/marvell/octeontx/otx_cptpf_ucode.c
@@ -345,8 +345,7 @@ static void release_tar_archive(struct tar_arch_info_t *tar_arch)
kfree(curr);
}
- if (tar_arch->fw)
- release_firmware(tar_arch->fw);
+ release_firmware(tar_arch->fw);
kfree(tar_arch);
}