diff options
Diffstat (limited to 'arch/arm/mach-omap2/prcm.c')
-rw-r--r-- | arch/arm/mach-omap2/prcm.c | 19 |
1 files changed, 6 insertions, 13 deletions
diff --git a/arch/arm/mach-omap2/prcm.c b/arch/arm/mach-omap2/prcm.c index 2e40a5cf0163..8db5f035eb0a 100644 --- a/arch/arm/mach-omap2/prcm.c +++ b/arch/arm/mach-omap2/prcm.c | |||
@@ -151,17 +151,10 @@ int omap2_cm_wait_idlest(void __iomem *reg, u32 mask, u8 idlest, | |||
151 | 151 | ||
152 | void __init omap2_set_globals_prcm(struct omap_globals *omap2_globals) | 152 | void __init omap2_set_globals_prcm(struct omap_globals *omap2_globals) |
153 | { | 153 | { |
154 | /* Static mapping, never released */ | 154 | if (omap2_globals->prm) |
155 | if (omap2_globals->prm) { | 155 | prm_base = omap2_globals->prm; |
156 | prm_base = ioremap(omap2_globals->prm, SZ_8K); | 156 | if (omap2_globals->cm) |
157 | WARN_ON(!prm_base); | 157 | cm_base = omap2_globals->cm; |
158 | } | 158 | if (omap2_globals->cm2) |
159 | if (omap2_globals->cm) { | 159 | cm2_base = omap2_globals->cm2; |
160 | cm_base = ioremap(omap2_globals->cm, SZ_8K); | ||
161 | WARN_ON(!cm_base); | ||
162 | } | ||
163 | if (omap2_globals->cm2) { | ||
164 | cm2_base = ioremap(omap2_globals->cm2, SZ_8K); | ||
165 | WARN_ON(!cm2_base); | ||
166 | } | ||
167 | } | 160 | } |