Skip to content

Commit a99a234

Browse files
committed
platform/x86: intel_turbo_max_3: Switch to new Intel CPU model defines
JIRA: https://issues.redhat.com/browse/RHEL-120895 commit 70a4fa3 Author: Tony Luck <tony.luck@intel.com> Date: Fri May 31 13:37:01 2024 -0700 platform/x86: intel_turbo_max_3: 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-6-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> Signed-off-by: David Arcari <darcari@redhat.com>
1 parent 52cd807 commit a99a234

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

drivers/platform/x86/intel/turbo_max_3.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -115,8 +115,8 @@ static int itmt_legacy_cpu_online(unsigned int cpu)
115115
}
116116

117117
static const struct x86_cpu_id itmt_legacy_cpu_ids[] = {
118-
X86_MATCH_INTEL_FAM6_MODEL(BROADWELL_X, NULL),
119-
X86_MATCH_INTEL_FAM6_MODEL(SKYLAKE_X, NULL),
118+
X86_MATCH_VFM(INTEL_BROADWELL_X, NULL),
119+
X86_MATCH_VFM(INTEL_SKYLAKE_X, NULL),
120120
{}
121121
};
122122

0 commit comments

Comments
 (0)