[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <tip-bba10c5cab4ddd8725a7998e064fc72c9770c667@git.kernel.org>
Date: Sat, 17 Aug 2019 01:40:09 -0700
From: tip-bot for Rahul Tanwar <tipbot@...or.com>
To: linux-tip-commits@...r.kernel.org
Cc: mingo@...hat.com, bp@...e.de, andriy.shevchenko@...el.com,
ricardo.neri-calderon@...ux.intel.com, tony.luck@...el.com,
rafael.j.wysocki@...el.com, tglx@...utronix.de,
linux-kernel@...r.kernel.org, hdegoede@...hat.com,
mingo@...nel.org, hpa@...or.com, x86@...nel.org,
rahul.tanwar@...ux.intel.com
Subject: [tip:x86/cleanups] x86/cpu: Use constant definitions for CPU models
Commit-ID: bba10c5cab4ddd8725a7998e064fc72c9770c667
Gitweb: https://git.kernel.org/tip/bba10c5cab4ddd8725a7998e064fc72c9770c667
Author: Rahul Tanwar <rahul.tanwar@...ux.intel.com>
AuthorDate: Fri, 16 Aug 2019 16:18:57 +0800
Committer: Borislav Petkov <bp@...e.de>
CommitDate: Sat, 17 Aug 2019 10:34:09 +0200
x86/cpu: Use constant definitions for CPU models
Replace model numbers with their respective macro definitions when
comparing CPU models.
Suggested-by: Andy Shevchenko <andriy.shevchenko@...el.com>
Signed-off-by: Rahul Tanwar <rahul.tanwar@...ux.intel.com>
Signed-off-by: Borislav Petkov <bp@...e.de>
Cc: alan@...ux.intel.com
Cc: cheol.yong.kim@...el.com
Cc: Hans de Goede <hdegoede@...hat.com>
Cc: "H. Peter Anvin" <hpa@...or.com>
Cc: Ingo Molnar <mingo@...hat.com>
Cc: qi-ming.wu@...el.com
Cc: "Rafael J. Wysocki" <rafael.j.wysocki@...el.com>
Cc: Ricardo Neri <ricardo.neri-calderon@...ux.intel.com>
Cc: Thomas Gleixner <tglx@...utronix.de>
Cc: Tony Luck <tony.luck@...el.com>
Cc: x86-ml <x86@...nel.org>
Link: https://lkml.kernel.org/r/f7a0e142faa953a53d5f81f78055e1b3c793b134.1565940653.git.rahul.tanwar@linux.intel.com
---
arch/x86/kernel/cpu/intel.c | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/arch/x86/kernel/cpu/intel.c b/arch/x86/kernel/cpu/intel.c
index 8d6d92ebeb54..66de4b84c369 100644
--- a/arch/x86/kernel/cpu/intel.c
+++ b/arch/x86/kernel/cpu/intel.c
@@ -265,9 +265,9 @@ static void early_init_intel(struct cpuinfo_x86 *c)
/* Penwell and Cloverview have the TSC which doesn't sleep on S3 */
if (c->x86 == 6) {
switch (c->x86_model) {
- case 0x27: /* Penwell */
- case 0x35: /* Cloverview */
- case 0x4a: /* Merrifield */
+ case INTEL_FAM6_ATOM_SALTWELL_MID:
+ case INTEL_FAM6_ATOM_SALTWELL_TABLET:
+ case INTEL_FAM6_ATOM_SILVERMONT_MID:
set_cpu_cap(c, X86_FEATURE_NONSTOP_TSC_S3);
break;
default:
Powered by blists - more mailing lists