diff mbox series

crypto: api - remove another reference to blkcipher

Message ID 20191129181648.45591-1-ebiggers@kernel.org (mailing list archive)
State Accepted
Delegated to: Herbert Xu
Headers show
Series crypto: api - remove another reference to blkcipher | expand

Commit Message

Eric Biggers Nov. 29, 2019, 6:16 p.m. UTC
From: Eric Biggers <ebiggers@google.com>

Update a comment to refer to crypto_alloc_skcipher() rather than
crypto_alloc_blkcipher() (the latter having been removed).

Signed-off-by: Eric Biggers <ebiggers@google.com>
---
 crypto/api.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Comments

Herbert Xu Dec. 11, 2019, 9:41 a.m. UTC | #1
Eric Biggers <ebiggers@kernel.org> wrote:
> From: Eric Biggers <ebiggers@google.com>
> 
> Update a comment to refer to crypto_alloc_skcipher() rather than
> crypto_alloc_blkcipher() (the latter having been removed).
> 
> Signed-off-by: Eric Biggers <ebiggers@google.com>
> ---
> crypto/api.c | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)

Patch applied.  Thanks.
diff mbox series

Patch

diff --git a/crypto/api.c b/crypto/api.c
index 55bca28df92d..4d3d13872fac 100644
--- a/crypto/api.c
+++ b/crypto/api.c
@@ -516,7 +516,7 @@  EXPORT_SYMBOL_GPL(crypto_find_alg);
  *
  *	The returned transform is of a non-determinate type.  Most people
  *	should use one of the more specific allocation functions such as
- *	crypto_alloc_blkcipher.
+ *	crypto_alloc_skcipher().
  *
  *	In case of error the return value is an error pointer.
  */