diff options
author | Peter Zijlstra <peterz@infradead.org> | 2023-08-07 15:38:08 +0300 |
---|---|---|
committer | Peter Zijlstra <peterz@infradead.org> | 2023-08-09 22:51:06 +0300 |
commit | 0cfd8fbadd6833d243c9a9d8649ba4a9f4361c93 (patch) | |
tree | 2265ffd337562a846fc95f63d584c8a43bb9a11a /drivers/platform | |
parent | 882cdb06b668488a42ef717a260c05ba7dc43a49 (diff) | |
download | linux-0cfd8fbadd6833d243c9a9d8649ba4a9f4361c93.tar.xz |
x86/cpu: Fix Crestmont uarch
Sierra Forest and Grand Ridge are both E-core only using Crestmont
micro-architecture, They fit the pre-existing naming scheme prefectly
fine, adhere to it.
Signed-off-by: Peter Zijlstra (Intel) <peterz@infradead.org>
Acked-by: Rafael J. Wysocki <rafael.j.wysocki@intel.com>
Acked-by: Hans de Goede <hdegoede@redhat.com>
Link: https://lore.kernel.org/r/20230807150405.757666627@infradead.org
Diffstat (limited to 'drivers/platform')
-rw-r--r-- | drivers/platform/x86/intel/speed_select_if/isst_if_common.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/platform/x86/intel/speed_select_if/isst_if_common.c b/drivers/platform/x86/intel/speed_select_if/isst_if_common.c index 1f59ac55c5f7..47e5a947b0b4 100644 --- a/drivers/platform/x86/intel/speed_select_if/isst_if_common.c +++ b/drivers/platform/x86/intel/speed_select_if/isst_if_common.c @@ -720,7 +720,7 @@ static struct miscdevice isst_if_char_driver = { static const struct x86_cpu_id hpm_cpu_ids[] = { X86_MATCH_INTEL_FAM6_MODEL(GRANITERAPIDS_X, NULL), - X86_MATCH_INTEL_FAM6_MODEL(SIERRAFOREST_X, NULL), + X86_MATCH_INTEL_FAM6_MODEL(ATOM_CRESTMONT_X, NULL), {} }; |