Skip to content

Commit 1868d19

Browse files
committed
Merge tag 'acpi-6.3-rc4' of git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm
Pull ACPI fixes from Rafael Wysocki: "These add new ACPI IRQ override and backlight detection quirks. Specifics: - Add backlight=native DMI quirk for Acer Aspire 3830TG to the ACPI backlight driver (Hans de Goede) - Add an ACPI IRQ override quirk for Medion S17413 (Aymeric Wibo)" * tag 'acpi-6.3-rc4' of git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm: ACPI: resource: Add Medion S17413 to IRQ override quirk ACPI: video: Add backlight=native DMI quirk for Acer Aspire 3830TG
2 parents cb7f5b4 + 8dbfa05 commit 1868d19

File tree

2 files changed

+15
-0
lines changed

2 files changed

+15
-0
lines changed

drivers/acpi/resource.c

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -400,6 +400,13 @@ static const struct dmi_system_id medion_laptop[] = {
400400
DMI_MATCH(DMI_BOARD_NAME, "M17T"),
401401
},
402402
},
403+
{
404+
.ident = "MEDION S17413",
405+
.matches = {
406+
DMI_MATCH(DMI_SYS_VENDOR, "MEDION"),
407+
DMI_MATCH(DMI_BOARD_NAME, "M1xA"),
408+
},
409+
},
403410
{ }
404411
};
405412

drivers/acpi/video_detect.c

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -495,6 +495,14 @@ static const struct dmi_system_id video_detect_dmi_table[] = {
495495
DMI_MATCH(DMI_PRODUCT_NAME, "Precision 7510"),
496496
},
497497
},
498+
{
499+
.callback = video_detect_force_native,
500+
/* Acer Aspire 3830TG */
501+
.matches = {
502+
DMI_MATCH(DMI_SYS_VENDOR, "Acer"),
503+
DMI_MATCH(DMI_PRODUCT_NAME, "Aspire 3830TG"),
504+
},
505+
},
498506
{
499507
.callback = video_detect_force_native,
500508
/* Acer Aspire 4810T */

0 commit comments

Comments
 (0)