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 0098f6a commit ff4dff0Copy full SHA for ff4dff0
arch/x86/kernel/cpu/intel.c
@@ -341,17 +341,13 @@ static void early_init_intel(struct cpuinfo_x86 *c)
341
}
342
343
/* Penwell and Cloverview have the TSC which doesn't sleep on S3 */
344
- if (c->x86 == 6) {
345
- switch (c->x86_vfm) {
346
- case INTEL_ATOM_SALTWELL_MID:
347
- case INTEL_ATOM_SALTWELL_TABLET:
348
- case INTEL_ATOM_SILVERMONT_MID:
349
- case INTEL_ATOM_AIRMONT_NP:
350
- set_cpu_cap(c, X86_FEATURE_NONSTOP_TSC_S3);
351
- break;
352
- default:
353
354
- }
+ 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;
355
356
357
/*
0 commit comments