summaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
authorZhang Rui <rui.zhang@intel.com>2024-11-14 15:59:39 +0800
committerLen Brown <len.brown@intel.com>2024-11-30 16:42:06 -0500
commit3ae5f34384176a4a8742dd11ab0e1e062dcc6ce2 (patch)
tree5fb4625351e7ebe57e0ab06b7f53695cd9c5c8db /tools
parentb082e07aec468c4564ceff83a6739d2407d1979d (diff)
downloadlwn-3ae5f34384176a4a8742dd11ab0e1e062dcc6ce2.tar.gz
lwn-3ae5f34384176a4a8742dd11ab0e1e062dcc6ce2.zip
tools/power turbostat: Rename arl_features to lnl_features
As ARL shares the same features with ADL/RPL/MTL, now 'arl_features' is used by Lunarlake platform only. Rename 'arl_features' to 'lnl_features'. No functional change. Signed-off-by: Zhang Rui <rui.zhang@intel.com> Signed-off-by: Len Brown <len.brown@intel.com>
Diffstat (limited to 'tools')
-rw-r--r--tools/power/x86/turbostat/turbostat.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/power/x86/turbostat/turbostat.c b/tools/power/x86/turbostat/turbostat.c
index 0ba2564f512a..dd2a90b1d12d 100644
--- a/tools/power/x86/turbostat/turbostat.c
+++ b/tools/power/x86/turbostat/turbostat.c
@@ -752,7 +752,7 @@ static const struct platform_features adl_features = {
.enable_tsc_tweak = 1,
};
-static const struct platform_features arl_features = {
+static const struct platform_features lnl_features = {
.has_msr_misc_feature_control = 1,
.has_msr_misc_pwr_mgmt = 1,
.has_nhm_msrs = 1,
@@ -1014,7 +1014,7 @@ static const struct platform_data turbostat_pdata[] = {
{ INTEL_ARROWLAKE_H, &adl_features },
{ INTEL_ARROWLAKE_U, &adl_features },
{ INTEL_ARROWLAKE, &adl_features },
- { INTEL_LUNARLAKE_M, &arl_features },
+ { INTEL_LUNARLAKE_M, &lnl_features },
{ INTEL_ATOM_SILVERMONT, &slv_features },
{ INTEL_ATOM_SILVERMONT_D, &slvd_features },
{ INTEL_ATOM_AIRMONT, &amt_features },