diff options
author | Randy Dunlap <randy.dunlap@oracle.com> | 2008-07-24 23:09:32 (GMT) |
---|---|---|
committer | Vegard Nossum <vegard.nossum@gmail.com> | 2009-06-13 13:37:49 (GMT) |
commit | 60e383931d41b0bccefdf318ffde8b49e343e9bc (patch) | |
tree | f1ec4e6702b8f79ba4e48479e0b4afd1608efb9a /arch/x86/mm/kmemcheck/shadow.c | |
parent | dfec072ecd35ba6ecad2d51dde325253ac9a2936 (diff) | |
download | linux-fsl-qoriq-60e383931d41b0bccefdf318ffde8b49e343e9bc.tar.xz |
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>
Diffstat (limited to 'arch/x86/mm/kmemcheck/shadow.c')
-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 5544d36..e7346d3 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> |