[PATCH 16/22] drm/amd/pm: fix enum type compared against 0

Huang, Tim Tim.Huang at amd.com
Fri May 10 06:45:47 UTC 2024


[AMD Official Use Only - General]

This patch is,

Reviewed-by: Tim Huang <Tim.Huang at amd.com>



> -----Original Message-----
> From: amd-gfx <amd-gfx-bounces at lists.freedesktop.org> On Behalf Of Jesse
> Zhang
> Sent: Friday, May 10, 2024 10:51 AM
> To: amd-gfx at lists.freedesktop.org
> Cc: Deucher, Alexander <Alexander.Deucher at amd.com>; Koenig, Christian
> <Christian.Koenig at amd.com>; Huang, Tim <Tim.Huang at amd.com>; Zhang,
> Jesse(Jie) <Jesse.Zhang at amd.com>; Zhang, Jesse(Jie)
> <Jesse.Zhang at amd.com>
> Subject: [PATCH 16/22] drm/amd/pm: fix enum type compared against 0
>
> This less-than-zero comparison of an unsigned value is never true. type < 0U
>
> Signed-off-by: Jesse Zhang <Jesse.Zhang at amd.com>
> ---
>  drivers/gpu/drm/amd/pm/swsmu/smu_cmn.c | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/drivers/gpu/drm/amd/pm/swsmu/smu_cmn.c
> b/drivers/gpu/drm/amd/pm/swsmu/smu_cmn.c
> index d439b95bfb79..602aa6941231 100644
> --- a/drivers/gpu/drm/amd/pm/swsmu/smu_cmn.c
> +++ b/drivers/gpu/drm/amd/pm/swsmu/smu_cmn.c
> @@ -56,7 +56,7 @@ static const char * const __smu_message_names[] =
> {  static const char *smu_get_message_name(struct smu_context *smu,
>                                       enum smu_message_type type)
>  {
> -     if (type < 0 || type >= SMU_MSG_MAX_COUNT)
> +     if (type >= SMU_MSG_MAX_COUNT)
>               return "unknown smu message";
>
>       return __smu_message_names[type];
> --
> 2.25.1



More information about the amd-gfx mailing list