]> www.infradead.org Git - users/dwmw2/linux.git/commitdiff
drm/amdgpu/smu13.0.7: print index for profiles
authorAlex Deucher <alexander.deucher@amd.com>
Thu, 22 Aug 2024 20:20:10 +0000 (16:20 -0400)
committerAlex Deucher <alexander.deucher@amd.com>
Wed, 28 Aug 2024 14:01:07 +0000 (10:01 -0400)
Print the index for the profiles.

Closes: https://gitlab.freedesktop.org/drm/amd/-/issues/3543
Reviewed-by: Kenneth Feng <kenneth.feng@amd.com>
Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
(cherry picked from commit b86a6a57b8ad1699ba8b1c270a79678383baf632)

drivers/gpu/drm/amd/pm/swsmu/smu13/smu_v13_0_7_ppt.c

index a7d0231727e8f432e36a0e3c2af9f575f21494c5..7bc95c4043778d128859928f18f69ed9d4dd757e 100644 (file)
@@ -2378,7 +2378,7 @@ static int smu_v13_0_7_get_power_profile_mode(struct smu_context *smu, char *buf
 
        size += sysfs_emit_at(buf, size, "                              ");
        for (i = 0; i <= PP_SMC_POWER_PROFILE_WINDOW3D; i++)
-               size += sysfs_emit_at(buf, size, "%-14s%s", amdgpu_pp_profile_name[i],
+               size += sysfs_emit_at(buf, size, "%d %-14s%s", i, amdgpu_pp_profile_name[i],
                        (i == smu->power_profile_mode) ? "* " : "  ");
 
        size += sysfs_emit_at(buf, size, "\n");
@@ -2408,7 +2408,7 @@ static int smu_v13_0_7_get_power_profile_mode(struct smu_context *smu, char *buf
 do {                                                                                                   \
        size += sysfs_emit_at(buf, size, "%-30s", #field);                                              \
        for (j = 0; j <= PP_SMC_POWER_PROFILE_WINDOW3D; j++)                                            \
-               size += sysfs_emit_at(buf, size, "%-16d", activity_monitor_external[j].DpmActivityMonitorCoeffInt.field);               \
+               size += sysfs_emit_at(buf, size, "%-18d", activity_monitor_external[j].DpmActivityMonitorCoeffInt.field);               \
        size += sysfs_emit_at(buf, size, "\n");                                                         \
 } while (0)