@@ -219,7 +219,9 @@ void amd_pstate_boost_init(unsigned int cpu, int *support, int *active)
219
219
220
220
void amd_pstate_show_perf_and_freq (unsigned int cpu , int no_rounding )
221
221
{
222
- printf (_ (" AMD PSTATE Highest Performance: %lu. Maximum Frequency: " ),
222
+
223
+ printf (_ (" amd-pstate limits:\n" ));
224
+ printf (_ (" Highest Performance: %lu. Maximum Frequency: " ),
223
225
amd_pstate_get_data (cpu , AMD_PSTATE_HIGHEST_PERF ));
224
226
/*
225
227
* 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)
228
230
print_speed (amd_pstate_get_data (cpu , AMD_PSTATE_MAX_FREQ ), no_rounding );
229
231
printf (".\n" );
230
232
231
- printf (_ (" AMD PSTATE Nominal Performance: %lu. Nominal Frequency: " ),
233
+ printf (_ (" Nominal Performance: %lu. Nominal Frequency: " ),
232
234
acpi_cppc_get_data (cpu , NOMINAL_PERF ));
233
235
print_speed (acpi_cppc_get_data (cpu , NOMINAL_FREQ ) * 1000 ,
234
236
no_rounding );
235
237
printf (".\n" );
236
238
237
- printf (_ (" AMD PSTATE Lowest Non-linear Performance: %lu. Lowest Non-linear Frequency: " ),
239
+ printf (_ (" Lowest Non-linear Performance: %lu. Lowest Non-linear Frequency: " ),
238
240
acpi_cppc_get_data (cpu , LOWEST_NONLINEAR_PERF ));
239
241
print_speed (amd_pstate_get_data (cpu , AMD_PSTATE_LOWEST_NONLINEAR_FREQ ),
240
242
no_rounding );
241
243
printf (".\n" );
242
244
243
- printf (_ (" AMD PSTATE Lowest Performance: %lu. Lowest Frequency: " ),
245
+ printf (_ (" Lowest Performance: %lu. Lowest Frequency: " ),
244
246
acpi_cppc_get_data (cpu , LOWEST_PERF ));
245
247
print_speed (acpi_cppc_get_data (cpu , LOWEST_FREQ ) * 1000 , no_rounding );
246
248
printf (".\n" );
0 commit comments