Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

crypto: ccree - Fix typo in comment

Corrected typos in comment:
Asynchronize->Asynchronous,
encryped->encrypted,
decryped->decrypted,
fallabck->fallback.

Signed-off-by: Yu Jiaoliang <yujiaoliang@vivo.com>
Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>

authored by

Yu Jiaoliang and committed by
Herbert Xu
f05ddb80 d86ad391

+4 -4
+2 -2
drivers/crypto/ccree/cc_aead.c
··· 2226 2226 2227 2227 memset(areq_ctx, 0, sizeof(*areq_ctx)); 2228 2228 2229 - //plaintext is not encryped with rfc4543 2229 + //plaintext is not encrypted with rfc4543 2230 2230 areq_ctx->plaintext_authenticate_only = true; 2231 2231 2232 2232 /* No generated IV required */ ··· 2277 2277 2278 2278 memset(areq_ctx, 0, sizeof(*areq_ctx)); 2279 2279 2280 - //plaintext is not decryped with rfc4543 2280 + //plaintext is not decrypted with rfc4543 2281 2281 areq_ctx->plaintext_authenticate_only = true; 2282 2282 2283 2283 /* No generated IV required */
+1 -1
drivers/crypto/ccree/cc_cipher.c
··· 179 179 } 180 180 max_key_buf_size <<= 1; 181 181 182 - /* Alloc fallabck tfm or essiv when key size != 256 bit */ 182 + /* Alloc fallback tfm or essiv when key size != 256 bit */ 183 183 ctx_p->fallback_tfm = 184 184 crypto_alloc_skcipher(name, 0, CRYPTO_ALG_NEED_FALLBACK | CRYPTO_ALG_ASYNC); 185 185
+1 -1
drivers/crypto/ccree/cc_hash.c
··· 1577 1577 1578 1578 /* hash descriptors */ 1579 1579 static struct cc_hash_template driver_hash[] = { 1580 - //Asynchronize hash template 1580 + //Asynchronous hash template 1581 1581 { 1582 1582 .name = "sha1", 1583 1583 .driver_name = "sha1-ccree",