aboutsummaryrefslogtreecommitdiff
path: root/drivers/platform/x86/intel/telemetry/debugfs.c
diff options
context:
space:
mode:
authorTony Luck <tony.luck@intel.com>2024-05-31 13:36:58 -0700
committerIlpo Järvinen <ilpo.jarvinen@linux.intel.com>2024-06-03 09:48:58 +0300
commit0ff9c76fda20fbd5af079f38581db64b55832929 (patch)
tree30368f13dbb49f9105e5eebfc2cfadb688a13828 /drivers/platform/x86/intel/telemetry/debugfs.c
parent33af65ad67495e61e5008beb1f7fbede22f85318 (diff)
platform/x86: intel_telemetry: Switch to new Intel CPU model defines
New CPU #defines encode vendor and family as well as model. Signed-off-by: Tony Luck <tony.luck@intel.com> Acked-by: Hans de Goede <hdegoede@redhat.com> Link: https://lore.kernel.org/r/20240531203706.233365-3-tony.luck@intel.com Reviewed-by: Ilpo Järvinen <ilpo.jarvinen@linux.intel.com> Signed-off-by: Ilpo Järvinen <ilpo.jarvinen@linux.intel.com>
Diffstat (limited to 'drivers/platform/x86/intel/telemetry/debugfs.c')
-rw-r--r--drivers/platform/x86/intel/telemetry/debugfs.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/platform/x86/intel/telemetry/debugfs.c b/drivers/platform/x86/intel/telemetry/debugfs.c
index 1d4d0fbfd63c..70e5736c44c7 100644
--- a/drivers/platform/x86/intel/telemetry/debugfs.c
+++ b/drivers/platform/x86/intel/telemetry/debugfs.c
@@ -308,8 +308,8 @@ static struct telemetry_debugfs_conf telem_apl_debugfs_conf = {
};
static const struct x86_cpu_id telemetry_debugfs_cpu_ids[] = {
- X86_MATCH_INTEL_FAM6_MODEL(ATOM_GOLDMONT, &telem_apl_debugfs_conf),
- X86_MATCH_INTEL_FAM6_MODEL(ATOM_GOLDMONT_PLUS, &telem_apl_debugfs_conf),
+ X86_MATCH_VFM(INTEL_ATOM_GOLDMONT, &telem_apl_debugfs_conf),
+ X86_MATCH_VFM(INTEL_ATOM_GOLDMONT_PLUS, &telem_apl_debugfs_conf),
{}
};
MODULE_DEVICE_TABLE(x86cpu, telemetry_debugfs_cpu_ids);