Skip to content

Commit 54774ab

Browse files
committed
Merge branches 'acpi-resource' and 'acpi-button'
Merge new DMI quirks for 6.12-rc5: - Add an ACPI IRQ override quirk for LG 16T90SP (Christian Heusel). - Add a lid switch detection quirk for Samsung Galaxy Book2 (Shubham Panwar). * acpi-resource: ACPI: resource: Add LG 16T90SP to irq1_level_low_skip_override[] * acpi-button: ACPI: button: Add DMI quirk for Samsung Galaxy Book2 to fix initial lid detection issue
3 parents 3d1c651 + 53f1a90 + 8fa73ee commit 54774ab

File tree

2 files changed

+18
-0
lines changed

2 files changed

+18
-0
lines changed

drivers/acpi/button.c

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -130,6 +130,17 @@ static const struct dmi_system_id dmi_lid_quirks[] = {
130130
},
131131
.driver_data = (void *)(long)ACPI_BUTTON_LID_INIT_OPEN,
132132
},
133+
{
134+
/*
135+
* Samsung galaxybook2 ,initial _LID device notification returns
136+
* lid closed.
137+
*/
138+
.matches = {
139+
DMI_MATCH(DMI_SYS_VENDOR, "SAMSUNG ELECTRONICS CO., LTD."),
140+
DMI_MATCH(DMI_PRODUCT_NAME, "750XED"),
141+
},
142+
.driver_data = (void *)(long)ACPI_BUTTON_LID_INIT_OPEN,
143+
},
133144
{}
134145
};
135146

drivers/acpi/resource.c

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -503,6 +503,13 @@ static const struct dmi_system_id irq1_level_low_skip_override[] = {
503503
DMI_MATCH(DMI_BOARD_NAME, "17U70P"),
504504
},
505505
},
506+
{
507+
/* LG Electronics 16T90SP */
508+
.matches = {
509+
DMI_MATCH(DMI_SYS_VENDOR, "LG Electronics"),
510+
DMI_MATCH(DMI_BOARD_NAME, "16T90SP"),
511+
},
512+
},
506513
{ }
507514
};
508515

0 commit comments

Comments
 (0)