ARM: rockchip: pm: fix compile warning
authorHuang, Tao <huangtao@rock-chips.com>
Thu, 25 May 2017 12:40:41 +0000 (20:40 +0800)
committerHuang, Tao <huangtao@rock-chips.com>
Thu, 25 May 2017 13:33:30 +0000 (21:33 +0800)
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>
arch/arm/mach-rockchip/pm.c

index 8d956f7a13e9a9ff8e4caeb25acac946f4dcea2f..03646f7890d14fa5c0c530c73f55d6ad8aa326a3 100644 (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();