Skip to content

Commit e91a158

Browse files
lenbrafaeljw
authored andcommitted
intel_idle: Allow loading ACPI tables for any family
There is no reason to limit intel_idle's loading of ACPI tables to family 6. Upcoming Intel processors are not in family 6. Below "Fixes" really means "applies cleanly until". That syntax commit didn't change the previous logic, but shows this patch applies back 5-years. Fixes: 4a9f45a ("intel_idle: Convert to new X86 CPU match macros") Signed-off-by: Len Brown <[email protected]> Link: https://patch.msgid.link/06101aa4fe784e5b0be1cb2c0bdd9afcf16bd9d4.1754681697.git.len.brown@intel.com Signed-off-by: Rafael J. Wysocki <[email protected]>
1 parent 8f5ae30 commit e91a158

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

drivers/idle/intel_idle.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1679,7 +1679,7 @@ static const struct x86_cpu_id intel_idle_ids[] __initconst = {
16791679
};
16801680

16811681
static const struct x86_cpu_id intel_mwait_ids[] __initconst = {
1682-
X86_MATCH_VENDOR_FAM_FEATURE(INTEL, 6, X86_FEATURE_MWAIT, NULL),
1682+
X86_MATCH_VENDOR_FAM_FEATURE(INTEL, X86_FAMILY_ANY, X86_FEATURE_MWAIT, NULL),
16831683
{}
16841684
};
16851685

0 commit comments

Comments
 (0)