Skip to content

Commit 564a278

Browse files
jwrdegoederafaeljw
authored andcommitted
ACPI: resource: Make Asus ExpertBook B2402 matches cover more models
The Asus ExpertBook B2402CBA / B2402FBA are the non flip / flip versions of the 14" Asus ExpertBook B2 with 12th gen Intel processors. It has been reported that the B2402FVA which is the 14" Asus ExpertBook B2 flip with 13th gen Intel processors needs to skip the IRQ override too. And looking at Asus website there also is a B2402CVA which is the non flip model with 13th gen Intel processors. Summarizing the following 4 models of the Asus ExpertBook B2 are known: B2402CBA: 12th gen Intel CPU, non flip B2402FBA: 12th gen Intel CPU, flip B2402CVA: 13th gen Intel CPU, non flip B2402FVA: 13th gen Intel CPU, flip Fold the 2 existing quirks for the B2402CBA and B2402FBA into a single quirk covering B2402* to also cover the 2 other models while at the same time reducing the number of quirks. Reported-by: Stefan Blum <[email protected]> Closes: https://lore.kernel.org/platform-driver-x86/[email protected]/ Cc: All applicable <[email protected]> Signed-off-by: Hans de Goede <[email protected]> Link: https://patch.msgid.link/[email protected] Signed-off-by: Rafael J. Wysocki <[email protected]>
1 parent e1043b6 commit 564a278

File tree

1 file changed

+2
-9
lines changed

1 file changed

+2
-9
lines changed

drivers/acpi/resource.c

Lines changed: 2 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -483,17 +483,10 @@ static const struct dmi_system_id irq1_level_low_skip_override[] = {
483483
},
484484
},
485485
{
486-
/* Asus ExpertBook B2402CBA */
486+
/* Asus ExpertBook B2402 (B2402CBA / B2402FBA / B2402CVA / B2402FVA) */
487487
.matches = {
488488
DMI_MATCH(DMI_SYS_VENDOR, "ASUSTeK COMPUTER INC."),
489-
DMI_MATCH(DMI_BOARD_NAME, "B2402CBA"),
490-
},
491-
},
492-
{
493-
/* Asus ExpertBook B2402FBA */
494-
.matches = {
495-
DMI_MATCH(DMI_SYS_VENDOR, "ASUSTeK COMPUTER INC."),
496-
DMI_MATCH(DMI_BOARD_NAME, "B2402FBA"),
489+
DMI_MATCH(DMI_BOARD_NAME, "B2402"),
497490
},
498491
},
499492
{

0 commit comments

Comments
 (0)