]> www.infradead.org Git - users/hch/misc.git/commitdiff
drm/radeon/ci_dpm: Use int type to store negative error codes
authorQianfeng Rong <rongqianfeng@vivo.com>
Wed, 3 Sep 2025 12:21:10 +0000 (20:21 +0800)
committerAlex Deucher <alexander.deucher@amd.com>
Fri, 5 Sep 2025 20:06:37 +0000 (16:06 -0400)
Change the 'ret' variable in ci_populate_all_graphic_levels()
and ci_populate_all_memory_levels() from u32 to int, as it needs to store
either 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/radeon/ci_dpm.c

index 7c3a960f486a0eef7f8f764732ecd7e4878a9ced..1f9f4424055a95b8e9f08c695beab909d703e590 100644 (file)
@@ -3238,7 +3238,8 @@ static int ci_populate_all_graphic_levels(struct radeon_device *rdev)
        u32 level_array_size = sizeof(SMU7_Discrete_GraphicsLevel) *
                SMU7_MAX_LEVELS_GRAPHICS;
        SMU7_Discrete_GraphicsLevel *levels = pi->smc_state_table.GraphicsLevel;
-       u32 i, ret;
+       int ret;
+       u32 i;
 
        memset(levels, 0, level_array_size);
 
@@ -3285,7 +3286,8 @@ static int ci_populate_all_memory_levels(struct radeon_device *rdev)
        u32 level_array_size = sizeof(SMU7_Discrete_MemoryLevel) *
                SMU7_MAX_LEVELS_MEMORY;
        SMU7_Discrete_MemoryLevel *levels = pi->smc_state_table.MemoryLevel;
-       u32 i, ret;
+       int ret;
+       u32 i;
 
        memset(levels, 0, level_array_size);