From: Paul Gortmaker Date: Sat, 2 May 2015 01:29:53 +0000 (-0400) Subject: crypto/asymmetric_keys: pkcs7_key_type needs module.h X-Git-Tag: v4.2-rc1~42^2~3 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=88775588b71d28a9020a7faa4ad95bbf76d8bb45;p=thirdparty%2Fkernel%2Flinux.git crypto/asymmetric_keys: pkcs7_key_type needs module.h This driver builds off of the tristate CONFIG_PKCS7_TEST_KEY and calls module_init and module_exit. So it should explicitly include module.h to avoid compile breakage during header shuffles done in the future. Cc: Herbert Xu Cc: "David S. Miller" Cc: linux-crypto@vger.kernel.org Signed-off-by: Paul Gortmaker --- diff --git a/crypto/asymmetric_keys/pkcs7_key_type.c b/crypto/asymmetric_keys/pkcs7_key_type.c index 751f8fd7335db..3d13b042da735 100644 --- a/crypto/asymmetric_keys/pkcs7_key_type.c +++ b/crypto/asymmetric_keys/pkcs7_key_type.c @@ -12,6 +12,7 @@ #define pr_fmt(fmt) "PKCS7key: "fmt #include #include +#include #include #include #include