We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 78ce84b commit 34b3fc5Copy full SHA for 34b3fc5
arch/x86/kernel/cpu/intel.c
@@ -294,17 +294,13 @@ static void early_init_intel(struct cpuinfo_x86 *c)
294
}
295
296
/* Penwell and Cloverview have the TSC which doesn't sleep on S3 */
297
- if (c->x86 == 6) {
298
- switch (c->x86_vfm) {
299
- case INTEL_ATOM_SALTWELL_MID:
300
- case INTEL_ATOM_SALTWELL_TABLET:
301
- case INTEL_ATOM_SILVERMONT_MID:
302
- case INTEL_ATOM_AIRMONT_NP:
303
- set_cpu_cap(c, X86_FEATURE_NONSTOP_TSC_S3);
304
- break;
305
- default:
306
307
- }
+ switch (c->x86_vfm) {
+ case INTEL_ATOM_SALTWELL_MID:
+ case INTEL_ATOM_SALTWELL_TABLET:
+ case INTEL_ATOM_SILVERMONT_MID:
+ case INTEL_ATOM_AIRMONT_NP:
+ set_cpu_cap(c, X86_FEATURE_NONSTOP_TSC_S3);
+ break;
308
309
310
/*
0 commit comments