[PATCH] drm/amdgpu/smu11: fix warning on 32bit arches
Alex Deucher
alexdeucher at gmail.com
Mon Apr 1 14:52:00 UTC 2019
Ping?
Alex
On Fri, Mar 29, 2019 at 3:16 PM Alex Deucher <alexdeucher at gmail.com> wrote:
>
> 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
>
More information about the amd-gfx
mailing list