diff options
author | Randy Dunlap <randy.dunlap@oracle.com> | 2008-07-24 16:09:32 -0700 |
---|---|---|
committer | Vegard Nossum <vegard.nossum@gmail.com> | 2009-06-13 15:37:49 +0200 |
commit | 60e383931d41b0bccefdf318ffde8b49e343e9bc (patch) | |
tree | f1ec4e6702b8f79ba4e48479e0b4afd1608efb9a | |
parent | dfec072ecd35ba6ecad2d51dde325253ac9a2936 (diff) |
kmemcheck: include module.h to prevent warnings
kmemcheck/shadow.c needs to include <linux/module.h> to prevent
the following warnings:
linux-next-20080724/arch/x86/mm/kmemcheck/shadow.c:64: warning : data definition has no type or storage class
linux-next-20080724/arch/x86/mm/kmemcheck/shadow.c:64: warning : type defaults to 'int' in declaration of 'EXPORT_SYMBOL_GPL'
linux-next-20080724/arch/x86/mm/kmemcheck/shadow.c:64: warning : parameter names (without types) in function declaration
Signed-off-by: Randy Dunlap <randy.dunlap@oracle.com>
Cc: vegardno@ifi.uio.no
Cc: penberg@cs.helsinki.fi
Cc: akpm <akpm@linux-foundation.org>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
-rw-r--r-- | arch/x86/mm/kmemcheck/shadow.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/arch/x86/mm/kmemcheck/shadow.c b/arch/x86/mm/kmemcheck/shadow.c index 5544d3600877..e7346d3873b3 100644 --- a/arch/x86/mm/kmemcheck/shadow.c +++ b/arch/x86/mm/kmemcheck/shadow.c @@ -1,6 +1,7 @@ #include <linux/kmemcheck.h> #include <linux/module.h> #include <linux/mm.h> +#include <linux/module.h> #include <asm/page.h> #include <asm/pgtable.h> |