Reviewed-by: Tao Zhou <[email protected]>

Tao

> -----Original Message-----
> From: amd-gfx <[email protected]> On Behalf Of Alex
> Deucher
> Sent: 2019年3月30日 3:16
> To: [email protected]; [email protected]
> Cc: Deucher, Alexander <[email protected]>
> Subject: [PATCH] drm/amdgpu/smu11: fix warning on 32bit arches
> 
> Fixes
> warning: cast from pointer to integer of different size 
> [-Wpointer-to-int-cast]
> on 32 bit platforms.
> 
> Signed-off-by: Alex Deucher <[email protected]>
> ---
>  drivers/gpu/drm/amd/powerplay/smu_v11_0.c | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/drivers/gpu/drm/amd/powerplay/smu_v11_0.c
> b/drivers/gpu/drm/amd/powerplay/smu_v11_0.c
> index 9d75911ce674..0e4b4b88af24 100644
> --- a/drivers/gpu/drm/amd/powerplay/smu_v11_0.c
> +++ b/drivers/gpu/drm/amd/powerplay/smu_v11_0.c
> @@ -527,7 +527,7 @@ static int
> smu_v11_0_notify_memory_pool_location(struct smu_context *smu)
>       if (memory_pool->size == 0 || memory_pool->cpu_addr == NULL)
>               return ret;
> 
> -     address = (uint64_t)memory_pool->cpu_addr;
> +     address = (uintptr_t)memory_pool->cpu_addr;
>       address_high = (uint32_t)upper_32_bits(address);
>       address_low  = (uint32_t)lower_32_bits(address);
> 
> --
> 2.20.1
> 
> _______________________________________________
> amd-gfx mailing list
> [email protected]
> https://lists.freedesktop.org/mailman/listinfo/amd-gfx
_______________________________________________
amd-gfx mailing list
[email protected]
https://lists.freedesktop.org/mailman/listinfo/amd-gfx

Reply via email to