diff options
author | Herbert Xu <herbert@gondor.apana.org.au> | 2022-11-25 07:36:28 +0300 |
---|---|---|
committer | Herbert Xu <herbert@gondor.apana.org.au> | 2022-12-02 13:12:40 +0300 |
commit | 14386d471322a204344ae81a28738b71e261d3a0 (patch) | |
tree | 672ae18644ae3c6e529acb5ee6f814329232b996 /crypto/sm4_generic.c | |
parent | 7bcceb4c9896b1b672b636ae70fe75110d6bf1ad (diff) | |
download | linux-14386d471322a204344ae81a28738b71e261d3a0.tar.xz |
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/sm4_generic.c')
-rw-r--r-- | crypto/sm4_generic.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/crypto/sm4_generic.c b/crypto/sm4_generic.c index 4a6480a27fee..560eba37dc55 100644 --- a/crypto/sm4_generic.c +++ b/crypto/sm4_generic.c @@ -7,12 +7,12 @@ * All rights reserved. */ +#include <crypto/algapi.h> #include <crypto/sm4.h> #include <linux/module.h> #include <linux/init.h> #include <linux/types.h> #include <linux/errno.h> -#include <linux/crypto.h> #include <asm/byteorder.h> #include <asm/unaligned.h> |