diff options
author | Dr. David Alan Gilbert <linux@treblig.org> | 2024-05-11 15:56:20 +0100 |
---|---|---|
committer | Herbert Xu <herbert@gondor.apana.org.au> | 2024-05-31 17:34:56 +0800 |
commit | 198faf0301ce1a51b9c859510ab884020dcb6f19 (patch) | |
tree | 63dcbc575b3868a93b07ac5e748d1f2a9f667800 /drivers/crypto | |
parent | eaa857782fdbba36544c74006d8037f4d101b90a (diff) | |
download | lwn-198faf0301ce1a51b9c859510ab884020dcb6f19.tar.gz lwn-198faf0301ce1a51b9c859510ab884020dcb6f19.zip |
crypto: n2 - Remove unused struct 'n2_skcipher_request_context'
'n2_skcipher_request_context' was added in
commit 23a6564a6b51 ("crypto: niagara2 - switch to skcipher API")
but never used.
Remove it.
Signed-off-by: Dr. David Alan Gilbert <linux@treblig.org>
Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
Diffstat (limited to 'drivers/crypto')
-rw-r--r-- | drivers/crypto/n2_core.c | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/drivers/crypto/n2_core.c b/drivers/crypto/n2_core.c index 59d472cb11e7..251e088a53df 100644 --- a/drivers/crypto/n2_core.c +++ b/drivers/crypto/n2_core.c @@ -720,10 +720,6 @@ static inline struct n2_skcipher_alg *n2_skcipher_alg(struct crypto_skcipher *tf return container_of(alg, struct n2_skcipher_alg, skcipher); } -struct n2_skcipher_request_context { - struct skcipher_walk walk; -}; - static int n2_aes_setkey(struct crypto_skcipher *skcipher, const u8 *key, unsigned int keylen) { |