diff options
author | Fabio Estevam <fabio.estevam@freescale.com> | 2013-02-11 12:01:46 -0200 |
---|---|---|
committer | Shawn Guo <shawn.guo@linaro.org> | 2013-03-04 10:07:13 +0800 |
commit | bb39cdc52f4278614579c1041155a7b182f47e75 (patch) | |
tree | 7cdeaa88f94a395e16ad9a29437f3dc19c350ea0 /arch/arm/mach-mxs | |
parent | f6c49da98dd6eacb85034d21d16e1428e03e190f (diff) | |
download | op-kernel-dev-bb39cdc52f4278614579c1041155a7b182f47e75.zip op-kernel-dev-bb39cdc52f4278614579c1041155a7b182f47e75.tar.gz |
ARM: mxs: mm: Fix sparse warning
Include <mach/common.h> header to fix the following sparse warnings:
arch/arm/mach-mxs/mm.c:43:13: warning: symbol 'mx23_map_io' was not declared. Should it be static?
arch/arm/mach-mxs/mm.c:48:13: warning: symbol 'mx28_map_io' was not declared. Should it be static?
Signed-off-by: Fabio Estevam <fabio.estevam@freescale.com>
Signed-off-by: Shawn Guo <shawn.guo@linaro.org>
Diffstat (limited to 'arch/arm/mach-mxs')
-rw-r--r-- | arch/arm/mach-mxs/mm.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/arch/arm/mach-mxs/mm.c b/arch/arm/mach-mxs/mm.c index a4294aa..e63b7d8 100644 --- a/arch/arm/mach-mxs/mm.c +++ b/arch/arm/mach-mxs/mm.c @@ -18,6 +18,7 @@ #include <mach/mx23.h> #include <mach/mx28.h> +#include <mach/common.h> /* * Define the MX23 memory map. |