[PATCH 1/2] drm/amdgpu/soc15: fix warnings in register macro

Huang Rui ray.huang at amd.com
Thu Sep 27 10:31:16 UTC 2018


On Wed, Sep 26, 2018 at 11:25:16AM -0500, Alex Deucher wrote:
> expects argument of type ‘unsigned int’ has type ‘long int’
> 
> Fixes: 52e211c1f04 ("drm/amdgpu:Add error message when register failed to reach expected value")
> Signed-off-by: Alex Deucher <alexander.deucher at amd.com>

Series are Reviewed-by: Huang Rui <ray.huang at amd.com>

> ---
>  drivers/gpu/drm/amd/amdgpu/soc15_common.h | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/drivers/gpu/drm/amd/amdgpu/soc15_common.h b/drivers/gpu/drm/amd/amdgpu/soc15_common.h
> index d35fac5b5a8a..958b10a57073 100644
> --- a/drivers/gpu/drm/amd/amdgpu/soc15_common.h
> +++ b/drivers/gpu/drm/amd/amdgpu/soc15_common.h
> @@ -57,7 +57,7 @@
>  			loop--;					\
>  			if (!loop) {				\
>  				DRM_ERROR("Register(%d) [%s] failed to reach value 0x%08x != 0x%08x\n", \
> -							inst, #reg, expected_value, (tmp_ & (mask))); \
> +					  inst, #reg, (unsigned)expected_value, (unsigned)(tmp_ & (mask))); \
>  				ret = -ETIMEDOUT;		\
>  				break;				\
>  			}					\
> -- 
> 2.13.6
> 
> _______________________________________________
> 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