[AMD Official Use Only - General] This patch is,
Reviewed-by: Tim Huang <[email protected]> > -----Original Message----- > From: amd-gfx <[email protected]> On Behalf Of Jesse > Zhang > Sent: Friday, May 10, 2024 10:51 AM > To: [email protected] > Cc: Deucher, Alexander <[email protected]>; Koenig, Christian > <[email protected]>; Huang, Tim <[email protected]>; Zhang, > Jesse(Jie) <[email protected]>; Zhang, Jesse(Jie) > <[email protected]> > 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 <[email protected]> > --- > 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
