aboutsummaryrefslogtreecommitdiffstats
path: root/arch/x86/crypto
diff options
context:
space:
mode:
authorPaul Gortmaker <paul.gortmaker@windriver.com>2011-05-27 12:33:10 -0400
committerPaul Gortmaker <paul.gortmaker@windriver.com>2011-10-31 19:30:36 -0400
commit7c52d55170ce84ddf9c0ad4e020ef1d7a97975a7 (patch)
tree6788d2f806d44a7cd437f38dc44169395112081e /arch/x86/crypto
parent69c60c88eeb364ebf58432f9bc38033522d58767 (diff)
x86: fix up files really needing to include module.h
These files aren't just exporting symbols -- they are also defining a MODULE_LICENSE etc. so give them the full module.h file. Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com>
Diffstat (limited to 'arch/x86/crypto')
-rw-r--r--arch/x86/crypto/aes_glue.c1
-rw-r--r--arch/x86/crypto/aesni-intel_glue.c1
2 files changed, 2 insertions, 0 deletions
diff --git a/arch/x86/crypto/aes_glue.c b/arch/x86/crypto/aes_glue.c
index 49ae9fe32b22..bdce3eeeaa37 100644
--- a/arch/x86/crypto/aes_glue.c
+++ b/arch/x86/crypto/aes_glue.c
@@ -3,6 +3,7 @@
3 * 3 *
4 */ 4 */
5 5
6#include <linux/module.h>
6#include <crypto/aes.h> 7#include <crypto/aes.h>
7 8
8asmlinkage void aes_enc_blk(struct crypto_aes_ctx *ctx, u8 *out, const u8 *in); 9asmlinkage void aes_enc_blk(struct crypto_aes_ctx *ctx, u8 *out, const u8 *in);
diff --git a/arch/x86/crypto/aesni-intel_glue.c b/arch/x86/crypto/aesni-intel_glue.c
index feee8ff1d05e..545d0ce59818 100644
--- a/arch/x86/crypto/aesni-intel_glue.c
+++ b/arch/x86/crypto/aesni-intel_glue.c
@@ -22,6 +22,7 @@
22#include <linux/hardirq.h> 22#include <linux/hardirq.h>
23#include <linux/types.h> 23#include <linux/types.h>
24#include <linux/crypto.h> 24#include <linux/crypto.h>
25#include <linux/module.h>
25#include <linux/err.h> 26#include <linux/err.h>
26#include <crypto/algapi.h> 27#include <crypto/algapi.h>
27#include <crypto/aes.h> 28#include <crypto/aes.h>