crypto: hisilicon/sec - fix spelling mistake 'ckeck' -> 'check'
authorKai Ye <yekai13@huawei.com>
Sat, 12 Nov 2022 08:51:04 +0000 (08:51 +0000)
committerHerbert Xu <herbert@gondor.apana.org.au>
Fri, 18 Nov 2022 09:00:23 +0000 (17:00 +0800)
There are a couple of spelling mistakes in sec2. Fix them.

Signed-off-by: Kai Ye <yekai13@huawei.com>
Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
drivers/crypto/hisilicon/sec2/sec_crypto.c

index 84ae8dd..a2630dd 100644 (file)
@@ -2009,7 +2009,7 @@ static int sec_aead_sha512_ctx_init(struct crypto_aead *tfm)
        return sec_aead_ctx_init(tfm, "sha512");
 }
 
-static int sec_skcipher_cryptlen_ckeck(struct sec_ctx *ctx,
+static int sec_skcipher_cryptlen_check(struct sec_ctx *ctx,
        struct sec_req *sreq)
 {
        u32 cryptlen = sreq->c_req.sk_req->cryptlen;
@@ -2071,7 +2071,7 @@ static int sec_skcipher_param_check(struct sec_ctx *ctx, struct sec_req *sreq)
                }
                return 0;
        } else if (c_alg == SEC_CALG_AES || c_alg == SEC_CALG_SM4) {
-               return sec_skcipher_cryptlen_ckeck(ctx, sreq);
+               return sec_skcipher_cryptlen_check(ctx, sreq);
        }
 
        dev_err(dev, "skcipher algorithm error!\n");