]> Gentwo Git Trees - linux/.git/commit
drm/amd/pm: use int type to store negative error codes
authorQianfeng Rong <rongqianfeng@vivo.com>
Thu, 4 Sep 2025 14:58:00 +0000 (22:58 +0800)
committerAlex Deucher <alexander.deucher@amd.com>
Fri, 5 Sep 2025 21:38:40 +0000 (17:38 -0400)
commitbddf30944d42e1fb7f105fad4e5f9e7e86ea871e
treeb83ca51e666d82cd468eb37cb8ca0b44182cfd82
parenta055658793ddce9f2554c0d77e4b404cd0ac4107
drm/amd/pm: use int type to store negative error codes

Use int instead of uint32_t for 'ret' variable to store negative error
codes or zero returned by other functions.

Storing the negative error codes in unsigned type, doesn't cause an issue
at runtime but can be confusing. Additionally, assigning negative error
codes to unsigned type may trigger a GCC warning when the -Wsign-conversion
flag is enabled.

No effect on runtime.

Signed-off-by: Qianfeng Rong <rongqianfeng@vivo.com>
Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
drivers/gpu/drm/amd/pm/powerplay/hwmgr/smu10_hwmgr.c
drivers/gpu/drm/amd/pm/powerplay/smumgr/smu7_smumgr.c
drivers/gpu/drm/amd/pm/swsmu/smu12/renoir_ppt.c