mirror of
https://github.com/hardkernel/linux.git
synced 2026-06-09 12:17:12 +09:00
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:
@@ -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();
|
||||
|
||||
Reference in New Issue
Block a user