Re: [PATCH] crypto: skcipher - Get rid of crypto_grab_skcipher2()

2016-10-31 Thread Herbert Xu
On Fri, Oct 28, 2016 at 09:51:13AM -0700, Eric Biggers wrote: > Since commit 3a01d0ee2b99 ("crypto: skcipher - Remove top-level > givcipher interface"), crypto_grab_skcipher2() and > crypto_grab_skcipher() are equivalent. So switch callers of > crypto_grab_skcipher2() to crypto_grab_skcipher()

[PATCH] crypto: skcipher - Get rid of crypto_grab_skcipher2()

2016-10-28 Thread Eric Biggers
Since commit 3a01d0ee2b99 ("crypto: skcipher - Remove top-level givcipher interface"), crypto_grab_skcipher2() and crypto_grab_skcipher() are equivalent. So switch callers of crypto_grab_skcipher2() to crypto_grab_skcipher() and remove it. Signed-off-by: Eric Biggers ---