diff options
author | Colin Ian King <colin.king@canonical.com> | 2021-06-15 11:11:53 +0100 |
---|---|---|
committer | Herbert Xu <herbert@gondor.apana.org.au> | 2021-06-24 14:51:34 +0800 |
commit | 84c2c729eabda52a2f6caa087d51f0d7420bca0c (patch) | |
tree | f3293f5a2b000783667e27322fcd10e442912a81 /drivers | |
parent | d886d55f4c7345ea1628ecc49eaea3f496f8d3cb (diff) | |
download | linux-84c2c729eabda52a2f6caa087d51f0d7420bca0c.tar.gz linux-84c2c729eabda52a2f6caa087d51f0d7420bca0c.tar.bz2 linux-84c2c729eabda52a2f6caa087d51f0d7420bca0c.zip |
crypto: hisilicon/sec - Fix spelling mistake "fallbcak" -> "fallback"
There is a spelling mistake in a dev_err message. Fix it.
Signed-off-by: Colin Ian King <colin.king@canonical.com>
Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
Diffstat (limited to 'drivers')
-rw-r--r-- | drivers/crypto/hisilicon/sec2/sec_crypto.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/crypto/hisilicon/sec2/sec_crypto.c b/drivers/crypto/hisilicon/sec2/sec_crypto.c index f23af61661de..6a45bd23b363 100644 --- a/drivers/crypto/hisilicon/sec2/sec_crypto.c +++ b/drivers/crypto/hisilicon/sec2/sec_crypto.c @@ -2290,7 +2290,7 @@ static int sec_aead_soft_crypto(struct sec_ctx *ctx, /* Kunpeng920 aead mode not support input 0 size */ if (!a_ctx->fallback_aead_tfm) { - dev_err(dev, "aead fallbcak tfm is NULL!\n"); + dev_err(dev, "aead fallback tfm is NULL!\n"); return -EINVAL; } |