aboutsummaryrefslogtreecommitdiff
path: root/tools/power
diff options
context:
space:
mode:
authorGravatar Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com> 2023-08-09 08:53:04 -0700
committerGravatar Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com> 2023-08-09 08:57:32 -0700
commitdde9293b62c5af5c905f371ea47f10b5ab257624 (patch)
treec302c2c25d836c941a46af4b69218d58b8d2398d /tools/power
parenttools/power/x86/intel-speed-select: Prevent CPU 0 offline (diff)
downloadlinux-dde9293b62c5af5c905f371ea47f10b5ab257624.tar.gz
linux-dde9293b62c5af5c905f371ea47f10b5ab257624.tar.bz2
linux-dde9293b62c5af5c905f371ea47f10b5ab257624.zip
tools/power/x86/intel-speed-select: Change mem-frequency display name
The mem-frequency displayed by each profile is not the actual memory frequency of DIMMs, but the maximum the CPU can support. Change the mem-frequency field to max-mem-frequency. Signed-off-by: Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com>
Diffstat (limited to 'tools/power')
-rw-r--r--tools/power/x86/intel-speed-select/isst-display.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/power/x86/intel-speed-select/isst-display.c b/tools/power/x86/intel-speed-select/isst-display.c
index 0403d42ab1ba..14c9b037859a 100644
--- a/tools/power/x86/intel-speed-select/isst-display.c
+++ b/tools/power/x86/intel-speed-select/isst-display.c
@@ -442,7 +442,7 @@ void isst_ctdp_display_information(struct isst_id *id, FILE *outf, int tdp_level
}
if (ctdp_level->mem_freq) {
- snprintf(header, sizeof(header), "mem-frequency(MHz)");
+ snprintf(header, sizeof(header), "max-mem-frequency(MHz)");
snprintf(value, sizeof(value), "%d",
ctdp_level->mem_freq);
format_and_print(outf, level + 2, header, value);