diff options
author | Shawn Guo <shawn.guo@linaro.org> | 2011-09-28 05:16:07 -0400 |
---|---|---|
committer | Sascha Hauer <s.hauer@pengutronix.de> | 2011-10-04 04:55:12 -0400 |
commit | f548897ffc0510885af27e22a11f449fe5e0cbbd (patch) | |
tree | 0fdf27f5466df384626741edaf6f36bfc3a0d46a /arch/arm/plat-mxc/system.c | |
parent | 41e7daf27a321848adcfcea9764ac8665133f3ea (diff) |
arm/imx: remove cpu_is_xxx() check from __imx_ioremap()
This patch adds an ioremap hook imx_ioremap to be called in
__imx_ioremap(). Any soc that needs a customized ioremap other
than __arm_ioremap() can set up this hook in soc specific call.
Signed-off-by: Shawn Guo <shawn.guo@linaro.org>
Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
Diffstat (limited to 'arch/arm/plat-mxc/system.c')
-rw-r--r-- | arch/arm/plat-mxc/system.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/arch/arm/plat-mxc/system.c b/arch/arm/plat-mxc/system.c index 5fa03e7548ee..9dad8dcc2ea9 100644 --- a/arch/arm/plat-mxc/system.c +++ b/arch/arm/plat-mxc/system.c | |||
@@ -29,6 +29,7 @@ | |||
29 | #include <asm/mach-types.h> | 29 | #include <asm/mach-types.h> |
30 | 30 | ||
31 | void (*imx_idle)(void) = NULL; | 31 | void (*imx_idle)(void) = NULL; |
32 | void __iomem *(*imx_ioremap)(unsigned long, size_t, unsigned int) = NULL; | ||
32 | 33 | ||
33 | static void __iomem *wdog_base; | 34 | static void __iomem *wdog_base; |
34 | 35 | ||