diff options
author | Herbert Xu <herbert@gondor.apana.org.au> | 2022-11-25 05:36:28 +0100 |
---|---|---|
committer | Herbert Xu <herbert@gondor.apana.org.au> | 2022-12-02 11:12:40 +0100 |
commit | 14386d471322a204344ae81a28738b71e261d3a0 (patch) | |
tree | 672ae18644ae3c6e529acb5ee6f814329232b996 /crypto/blowfish_generic.c | |
parent | crypto: omap-sham - Use pm_runtime_resume_and_get() in omap_sham_probe() (diff) | |
download | linux-14386d471322a204344ae81a28738b71e261d3a0.tar.xz linux-14386d471322a204344ae81a28738b71e261d3a0.zip |
crypto: Prepare to move crypto_tfm_ctx
The helper crypto_tfm_ctx is only used by the Crypto API algorithm
code and should really be in algapi.h. However, for historical
reasons many files relied on it to be in crypto.h. This patch
changes those files to use algapi.h instead in prepartion for a
move.
Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
Diffstat (limited to 'crypto/blowfish_generic.c')
-rw-r--r-- | crypto/blowfish_generic.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/crypto/blowfish_generic.c b/crypto/blowfish_generic.c index 003b52c6880e..0e74c7242e77 100644 --- a/crypto/blowfish_generic.c +++ b/crypto/blowfish_generic.c @@ -11,11 +11,12 @@ * Copyright (c) Kyle McMartin <kyle@debian.org> * Copyright (c) 2002 James Morris <jmorris@intercode.com.au> */ + +#include <crypto/algapi.h> #include <linux/init.h> #include <linux/module.h> #include <linux/mm.h> #include <asm/unaligned.h> -#include <linux/crypto.h> #include <linux/types.h> #include <crypto/blowfish.h> |