diff options
author | Tony Lindgren <tony@atomide.com> | 2011-10-05 17:22:39 -0700 |
---|---|---|
committer | Tony Lindgren <tony@atomide.com> | 2011-10-19 16:34:11 -0700 |
commit | 8aca3ab5865f8cfbde841b6daf9442cc2279ced3 (patch) | |
tree | 98de30830a3f40247a00a6bccd92255b69a7b52d /arch/arm/mach-omap2/io.c | |
parent | 4c3cf90117f1f4906d5975aeccc5ffd414807fd2 (diff) | |
download | talos-obmc-linux-8aca3ab5865f8cfbde841b6daf9442cc2279ced3.tar.gz talos-obmc-linux-8aca3ab5865f8cfbde841b6daf9442cc2279ced3.zip |
ARM: OMAP: Warn if omap_ioremap is called before SoC detection
We don't have cpu_is_omapxxxx SoC detection initialized until
SoC detection is initialized from init_early.
Note that with the common map_io we should no longer need
cpu_is_omapxxxx for ioremap.
Acked-by: Nicolas Pitre <nicolas.pitre@linaro.org>
Signed-off-by: Tony Lindgren <tony@atomide.com>
Diffstat (limited to 'arch/arm/mach-omap2/io.c')
-rw-r--r-- | arch/arm/mach-omap2/io.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/arch/arm/mach-omap2/io.c b/arch/arm/mach-omap2/io.c index d5caac3698dd..aa96538f3fee 100644 --- a/arch/arm/mach-omap2/io.c +++ b/arch/arm/mach-omap2/io.c @@ -323,6 +323,7 @@ void __iomem *omap_irq_base; static void __init omap_common_init_early(void) { omap2_check_revision(); + omap_ioremap_init(); } static void __init omap_hwmod_init_postsetup(void) |