diff options
author | Markus Elfring <elfring@users.sourceforge.net> | 2018-03-12 14:18:23 +0100 |
---|---|---|
committer | Herbert Xu <herbert@gondor.apana.org.au> | 2018-03-23 23:39:57 +0800 |
commit | 0108aab1161532c9b62a0d05b8115f4d0b529831 (patch) | |
tree | a120462fb11b37568712abe6f3cb7bb29de5b751 /drivers/crypto | |
parent | 1a3713c7cd8c903264065a79c9b29517eec5152e (diff) | |
download | linux-0108aab1161532c9b62a0d05b8115f4d0b529831.tar.gz linux-0108aab1161532c9b62a0d05b8115f4d0b529831.tar.bz2 linux-0108aab1161532c9b62a0d05b8115f4d0b529831.zip |
crypto: talitos - Delete an error message for a failed memory allocation in talitos_edesc_alloc()
Omit an extra message for a memory allocation failure in this function.
This issue was detected by using the Coccinelle software.
Signed-off-by: Markus Elfring <elfring@users.sourceforge.net>
Reviewed-by: Christophe Leroy <christophe.leroy@c-s.fr>
Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
Diffstat (limited to 'drivers/crypto')
-rw-r--r-- | drivers/crypto/talitos.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/drivers/crypto/talitos.c b/drivers/crypto/talitos.c index 447cb8b1b16a..9a9788d7d5a8 100644 --- a/drivers/crypto/talitos.c +++ b/drivers/crypto/talitos.c @@ -1420,7 +1420,6 @@ static struct talitos_edesc *talitos_edesc_alloc(struct device *dev, edesc = kmalloc(alloc_len, GFP_DMA | flags); if (!edesc) { - dev_err(dev, "could not allocate edescriptor\n"); err = ERR_PTR(-ENOMEM); goto error_sg; } |