From: Tony Luck Date: Fri, 31 May 2024 20:37:02 +0000 (-0700) Subject: platform/x86: intel_ips: Switch to new Intel CPU model defines X-Git-Tag: v6.11-rc1~150^2~44 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=12929ac3ef8d24f8931020135786e0b8a773e7c9;p=thirdparty%2Fkernel%2Flinux.git platform/x86: intel_ips: Switch to new Intel CPU model defines New CPU #defines encode vendor and family as well as model. Signed-off-by: Tony Luck Acked-by: Hans de Goede Link: https://lore.kernel.org/r/20240531203706.233365-7-tony.luck@intel.com Reviewed-by: Ilpo Järvinen Signed-off-by: Ilpo Järvinen --- diff --git a/drivers/platform/x86/intel_ips.c b/drivers/platform/x86/intel_ips.c index 73ec4460a151f..c62c3c4ec20a2 100644 --- a/drivers/platform/x86/intel_ips.c +++ b/drivers/platform/x86/intel_ips.c @@ -62,6 +62,7 @@ #include #include #include +#include #include "intel_ips.h" #include @@ -1284,7 +1285,7 @@ static struct ips_mcp_limits *ips_detect_cpu(struct ips_driver *ips) struct ips_mcp_limits *limits = NULL; u16 tdp; - if (!(boot_cpu_data.x86 == 6 && boot_cpu_data.x86_model == 37)) { + if (!(boot_cpu_data.x86_vfm == INTEL_WESTMERE)) { dev_info(ips->dev, "Non-IPS CPU detected.\n"); return NULL; }