Skip to content

Commit 04ad927

Browse files
committed
Merge tag 'acpi-6.2-rc6' of git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm
Pull ACPI fixes from Rafael Wysocki: "Add ACPI backlight handling quirks for 3 machines (Hans de Goede)" * tag 'acpi-6.2-rc6' of git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm: ACPI: video: Add backlight=native DMI quirk for Asus U46E ACPI: video: Add backlight=native DMI quirk for HP EliteBook 8460p ACPI: video: Add backlight=native DMI quirk for HP Pavilion g6-1d80nr
2 parents 274d2f8 + e6b3086 commit 04ad927

File tree

1 file changed

+25
-0
lines changed

1 file changed

+25
-0
lines changed

drivers/acpi/video_detect.c

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -590,6 +590,14 @@ static const struct dmi_system_id video_detect_dmi_table[] = {
590590
DMI_MATCH(DMI_PRODUCT_NAME, "GA503"),
591591
},
592592
},
593+
{
594+
.callback = video_detect_force_native,
595+
/* Asus U46E */
596+
.matches = {
597+
DMI_MATCH(DMI_SYS_VENDOR, "ASUSTeK Computer Inc."),
598+
DMI_MATCH(DMI_PRODUCT_NAME, "U46E"),
599+
},
600+
},
593601
{
594602
.callback = video_detect_force_native,
595603
/* Asus UX303UB */
@@ -598,6 +606,23 @@ static const struct dmi_system_id video_detect_dmi_table[] = {
598606
DMI_MATCH(DMI_PRODUCT_NAME, "UX303UB"),
599607
},
600608
},
609+
{
610+
.callback = video_detect_force_native,
611+
/* HP EliteBook 8460p */
612+
.matches = {
613+
DMI_MATCH(DMI_SYS_VENDOR, "Hewlett-Packard"),
614+
DMI_MATCH(DMI_PRODUCT_NAME, "HP EliteBook 8460p"),
615+
},
616+
},
617+
{
618+
.callback = video_detect_force_native,
619+
/* HP Pavilion g6-1d80nr / B4U19UA */
620+
.matches = {
621+
DMI_MATCH(DMI_SYS_VENDOR, "Hewlett-Packard"),
622+
DMI_MATCH(DMI_PRODUCT_NAME, "HP Pavilion g6 Notebook PC"),
623+
DMI_MATCH(DMI_PRODUCT_SKU, "B4U19UA"),
624+
},
625+
},
601626
{
602627
.callback = video_detect_force_native,
603628
/* Samsung N150P */

0 commit comments

Comments
 (0)