[PATCH] drm/amdgpu/smu11: fix warning on 32bit arches

Zhou1, Tao Tao.Zhou1 at amd.com
Tue Apr 2 02:04:11 UTC 2019


Reviewed-by: Tao Zhou <tao.zhou1 at amd.com>

Tao

> -----Original Message-----
> From: amd-gfx <amd-gfx-bounces at lists.freedesktop.org> On Behalf Of Alex
> Deucher
> Sent: 2019年3月30日 3:16
> To: amd-gfx at lists.freedesktop.org; airlied at gmail.com
> Cc: Deucher, Alexander <Alexander.Deucher at amd.com>
> 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 <alexander.deucher at amd.com>
> ---
>  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
> amd-gfx at lists.freedesktop.org
> https://lists.freedesktop.org/mailman/listinfo/amd-gfx


More information about the amd-gfx mailing list