]> git.ipfire.org Git - thirdparty/kernel/linux.git/commitdiff
crypto: akcipher - fix kernel-doc typos
authorRandy Dunlap <rdunlap@infradead.org>
Sun, 1 Oct 2023 00:00:43 +0000 (17:00 -0700)
committerHerbert Xu <herbert@gondor.apana.org.au>
Thu, 5 Oct 2023 10:16:31 +0000 (18:16 +0800)
Correct typos of "destination".

Signed-off-by: Randy Dunlap <rdunlap@infradead.org>
Cc: Herbert Xu <herbert@gondor.apana.org.au>
Cc: "David S. Miller" <davem@davemloft.net>
Cc: linux-crypto@vger.kernel.org
Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
include/crypto/akcipher.h

index 670508f1dca19ce59d57e0880f6caa74b2fe6276..31c111bebb68883437e8bf5360986c0e44ce8fe4 100644 (file)
@@ -382,7 +382,7 @@ static inline int crypto_akcipher_decrypt(struct akcipher_request *req)
  * @tfm:       AKCIPHER tfm handle allocated with crypto_alloc_akcipher()
  * @src:       source buffer
  * @slen:      source length
- * @dst:       destinatino obuffer
+ * @dst:       destination obuffer
  * @dlen:      destination length
  *
  * Return: zero on success; error code in case of error
@@ -400,7 +400,7 @@ int crypto_akcipher_sync_encrypt(struct crypto_akcipher *tfm,
  * @tfm:       AKCIPHER tfm handle allocated with crypto_alloc_akcipher()
  * @src:       source buffer
  * @slen:      source length
- * @dst:       destinatino obuffer
+ * @dst:       destination obuffer
  * @dlen:      destination length
  *
  * Return: Output length on success; error code in case of error