From: Eric Biggers Date: Fri, 7 Oct 2016 21:13:34 +0000 (-0700) Subject: crypto: skcipher - Remove unused crypto_lookup_skcipher() declaration X-Git-Tag: v4.10-rc1~117^2~134 X-Git-Url: https://www.infradead.org/git/?a=commitdiff_plain;h=afb5a0a947f68dd5a5829db6c975063a0acc07d1;p=users%2Fdwmw2%2Flinux.git crypto: skcipher - Remove unused crypto_lookup_skcipher() declaration The definition of crypto_lookup_skcipher() was already removed in commit 3a01d0ee2b99 ("crypto: skcipher - Remove top-level givcipher interface"). So the declaration should be removed too. Signed-off-by: Eric Biggers Signed-off-by: Herbert Xu --- diff --git a/include/crypto/internal/skcipher.h b/include/crypto/internal/skcipher.h index a21a95e1a375a..95d2a1822796a 100644 --- a/include/crypto/internal/skcipher.h +++ b/include/crypto/internal/skcipher.h @@ -74,8 +74,6 @@ static inline int crypto_grab_skcipher2(struct crypto_skcipher_spawn *spawn, return crypto_grab_skcipher(spawn, name, type, mask); } -struct crypto_alg *crypto_lookup_skcipher(const char *name, u32 type, u32 mask); - static inline void crypto_drop_skcipher(struct crypto_skcipher_spawn *spawn) { crypto_drop_spawn(&spawn->base);