]> git.ipfire.org Git - thirdparty/kernel/linux.git/commitdiff
cpupower: Adjust whitespace for amd-pstate specific prints
authorMario Limonciello <mario.limonciello@amd.com>
Wed, 18 Dec 2024 19:09:56 +0000 (13:09 -0600)
committerShuah Khan <skhan@linuxfoundation.org>
Fri, 20 Dec 2024 16:12:07 +0000 (09:12 -0700)
The amd-pstate section is grouped under boost, which isn't appropriate.

Adjust the indentation so that it is it's own section.

Link: https://lore.kernel.org/r/20241218191144.3440854-8-superm1@kernel.org
Signed-off-by: Mario Limonciello <mario.limonciello@amd.com>
Signed-off-by: Shuah Khan <skhan@linuxfoundation.org>
tools/power/cpupower/utils/helpers/amd.c

index 090fdd6d15510254eab6f60c9a1fa14e10599f57..795562e879deead18c00bd4735fec9e03eb4df14 100644 (file)
@@ -219,7 +219,9 @@ void amd_pstate_boost_init(unsigned int cpu, int *support, int *active)
 
 void amd_pstate_show_perf_and_freq(unsigned int cpu, int no_rounding)
 {
-       printf(_("    AMD PSTATE Highest Performance: %lu. Maximum Frequency: "),
+
+       printf(_("  amd-pstate limits:\n"));
+       printf(_("    Highest Performance: %lu. Maximum Frequency: "),
               amd_pstate_get_data(cpu, AMD_PSTATE_HIGHEST_PERF));
        /*
         * If boost isn't active, the cpuinfo_max doesn't indicate real max
@@ -228,19 +230,19 @@ void amd_pstate_show_perf_and_freq(unsigned int cpu, int no_rounding)
        print_speed(amd_pstate_get_data(cpu, AMD_PSTATE_MAX_FREQ), no_rounding);
        printf(".\n");
 
-       printf(_("    AMD PSTATE Nominal Performance: %lu. Nominal Frequency: "),
+       printf(_("    Nominal Performance: %lu. Nominal Frequency: "),
               acpi_cppc_get_data(cpu, NOMINAL_PERF));
        print_speed(acpi_cppc_get_data(cpu, NOMINAL_FREQ) * 1000,
                    no_rounding);
        printf(".\n");
 
-       printf(_("    AMD PSTATE Lowest Non-linear Performance: %lu. Lowest Non-linear Frequency: "),
+       printf(_("    Lowest Non-linear Performance: %lu. Lowest Non-linear Frequency: "),
               acpi_cppc_get_data(cpu, LOWEST_NONLINEAR_PERF));
        print_speed(amd_pstate_get_data(cpu, AMD_PSTATE_LOWEST_NONLINEAR_FREQ),
                    no_rounding);
        printf(".\n");
 
-       printf(_("    AMD PSTATE Lowest Performance: %lu. Lowest Frequency: "),
+       printf(_("    Lowest Performance: %lu. Lowest Frequency: "),
               acpi_cppc_get_data(cpu, LOWEST_PERF));
        print_speed(acpi_cppc_get_data(cpu, LOWEST_FREQ) * 1000, no_rounding);
        printf(".\n");