diff options
author | Axel Lin <axel.lin@gmail.com> | 2011-10-18 12:51:46 +0400 |
---|---|---|
committer | Paul Gortmaker <paul.gortmaker@windriver.com> | 2011-11-01 03:31:06 +0400 |
commit | 5270f31222315de96a3ee00ecde5ad97528cacab (patch) | |
tree | 24d6f0bd9389d51b262f01dbc8339d40a4230af2 | |
parent | 66421a648d11c60e75d1ec4876f0748341598f5d (diff) | |
download | linux-5270f31222315de96a3ee00ecde5ad97528cacab.tar.xz |
unicore32: EXPORT_SYMBOL needs export.h
Include export.h to fix below warning:
CC arch/unicore32/mm/init.o
arch/unicore32/mm/init.c:227: warning: data definition has no type or storage class
arch/unicore32/mm/init.c:227: warning: type defaults to 'int' in declaration of 'EXPORT_SYMBOL'
arch/unicore32/mm/init.c:227: warning: parameter names (without types) in function declaration
Signed-off-by: Axel Lin <axel.lin@gmail.com>
Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com>
-rw-r--r-- | arch/unicore32/mm/init.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/arch/unicore32/mm/init.c b/arch/unicore32/mm/init.c index 2d3e7112d2a3..3b379cddbc64 100644 --- a/arch/unicore32/mm/init.c +++ b/arch/unicore32/mm/init.c @@ -20,6 +20,7 @@ #include <linux/memblock.h> #include <linux/sort.h> #include <linux/dma-mapping.h> +#include <linux/export.h> #include <asm/sections.h> #include <asm/setup.h> |