This is preparatory for the subsequent patches which mostly manage to add in the necessary includes automatically but will miss these files. I could have chosen to squash this into those commits, but it's nicer not to mix manual changes with scripted changes. Signed-off-by: Vegard Nossum <vegard.nossum@xxxxxxxxxx> --- crypto/asymmetric_keys/pkcs7_key_type.c | 1 + include/crypto/dh.h | 2 ++ include/crypto/ecdh.h | 2 ++ 3 files changed, 5 insertions(+) diff --git a/crypto/asymmetric_keys/pkcs7_key_type.c b/crypto/asymmetric_keys/pkcs7_key_type.c index b930d3bbf1af..e71be8b5b0f2 100644 --- a/crypto/asymmetric_keys/pkcs7_key_type.c +++ b/crypto/asymmetric_keys/pkcs7_key_type.c @@ -6,6 +6,7 @@ */ #define pr_fmt(fmt) "PKCS7key: "fmt +#include <crypto/api.h> #include <linux/key.h> #include <linux/err.h> #include <linux/module.h> diff --git a/include/crypto/dh.h b/include/crypto/dh.h index 7b863e911cb4..b5891c21cfe0 100644 --- a/include/crypto/dh.h +++ b/include/crypto/dh.h @@ -8,6 +8,8 @@ #ifndef _CRYPTO_DH_ #define _CRYPTO_DH_ +#include <crypto/api.h> + /** * DOC: DH Helper Functions * diff --git a/include/crypto/ecdh.h b/include/crypto/ecdh.h index 9784ecdd2fb4..aa09f880c0d3 100644 --- a/include/crypto/ecdh.h +++ b/include/crypto/ecdh.h @@ -8,6 +8,8 @@ #ifndef _CRYPTO_ECDH_ #define _CRYPTO_ECDH_ +#include <crypto/api.h> + /** * DOC: ECDH Helper Functions * -- 2.39.3