aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/crypto
diff options
context:
space:
mode:
authorKrzysztof Kozlowski <krzysztof.kozlowski@canonical.com>2021-04-16 14:23:10 +0200
committerHerbert Xu <herbert@gondor.apana.org.au>2021-04-22 17:31:31 +1000
commit3d3b3a0067d2a0d2ac5727bff617c23890bef463 (patch)
tree810346076695f4a99ebb70fe59b9ba20cf47735c /drivers/crypto
parentcrypto: s5p-sss - simplify getting of_device_id match data (diff)
downloadlinux-dev-3d3b3a0067d2a0d2ac5727bff617c23890bef463.tar.xz
linux-dev-3d3b3a0067d2a0d2ac5727bff617c23890bef463.zip
crypto: s5p-sss - remove unneeded local variable initialization
The initialization of 'err' local variable is not needed as it is shortly after overwritten. Addresses-Coverity: Unused value Signed-off-by: Krzysztof Kozlowski <krzysztof.kozlowski@canonical.com> Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
Diffstat (limited to 'drivers/crypto')
-rw-r--r--drivers/crypto/s5p-sss.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/crypto/s5p-sss.c b/drivers/crypto/s5p-sss.c
index d613bd557016..8c310816deab 100644
--- a/drivers/crypto/s5p-sss.c
+++ b/drivers/crypto/s5p-sss.c
@@ -2156,7 +2156,7 @@ static struct skcipher_alg algs[] = {
static int s5p_aes_probe(struct platform_device *pdev)
{
struct device *dev = &pdev->dev;
- int i, j, err = -ENODEV;
+ int i, j, err;
const struct samsung_aes_variant *variant;
struct s5p_aes_dev *pdata;
struct resource *res;