ARM: rockchip: pm: fix compile warning

When build with ARM_LPAE enabled:
arch/arm/mach-rockchip/pm.c: In function 'rk3288_init_pmu_sram':
arch/arm/mach-rockchip/pm.c:85:23: warning: cast to pointer from
integer of different size [-Wint-to-pointer-cast]

Change-Id: I526f13439c3c7edde77a27419d488a8f79081661
Signed-off-by: Huang, Tao <huangtao@rock-chips.com>
This commit is contained in:
Huang, Tao
2017-05-25 20:40:41 +08:00
parent c57691331e
commit c6b11bfdef

View File

@@ -82,7 +82,7 @@ static void __init rk3288_init_pmu_sram(void)
/* setup the params that we know at boot time */
params = (struct rk3288_resume_params *)rk3288_bootram_base;
params->cpu_resume = (void *)virt_to_phys(cpu_resume);
params->cpu_resume = (void *)(u32)virt_to_phys(cpu_resume);
params->l2ctlr_f = 1;
params->l2ctlr = rk3288_l2_config();