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>
/* 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();