From: Eric Biggers Date: Mon, 17 Dec 2018 03:12:18 +0000 (-0800) Subject: crypto: cipher - remove struct cipher_desc X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=bec9ba7f37631e794cbfaa4c2274074d631217a9;p=linux.git crypto: cipher - remove struct cipher_desc 'struct cipher_desc' is unused. Remove it. Signed-off-by: Eric Biggers Signed-off-by: Herbert Xu --- diff --git a/include/linux/crypto.h b/include/linux/crypto.h index 902ec171fc6db..c3c98a62e503b 100644 --- a/include/linux/crypto.h +++ b/include/linux/crypto.h @@ -188,14 +188,6 @@ struct blkcipher_desc { u32 flags; }; -struct cipher_desc { - struct crypto_tfm *tfm; - void (*crfn)(struct crypto_tfm *tfm, u8 *dst, const u8 *src); - unsigned int (*prfn)(const struct cipher_desc *desc, u8 *dst, - const u8 *src, unsigned int nbytes); - void *info; -}; - /** * DOC: Block Cipher Algorithm Definitions *