Skip to content

Commit d77596d

Browse files
jwrdegoederafaeljw
authored andcommitted
ACPI: video: Add backlight=native DMI quirk for HP Pavilion g6-1d80nr
The HP Pavilion g6-1d80nr predates Windows 8, so it defaults to using acpi_video# for backlight control, but this is non functional on this model. Add a DMI quirk to use the native backlight interface which does work properly. Signed-off-by: Hans de Goede <[email protected]> Signed-off-by: Rafael J. Wysocki <[email protected]>
1 parent 2241ab5 commit d77596d

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed

drivers/acpi/video_detect.c

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -618,6 +618,15 @@ static const struct dmi_system_id video_detect_dmi_table[] = {
618618
DMI_MATCH(DMI_PRODUCT_NAME, "UX303UB"),
619619
},
620620
},
621+
{
622+
.callback = video_detect_force_native,
623+
/* HP Pavilion g6-1d80nr / B4U19UA */
624+
.matches = {
625+
DMI_MATCH(DMI_SYS_VENDOR, "Hewlett-Packard"),
626+
DMI_MATCH(DMI_PRODUCT_NAME, "HP Pavilion g6 Notebook PC"),
627+
DMI_MATCH(DMI_PRODUCT_SKU, "B4U19UA"),
628+
},
629+
},
621630
{
622631
.callback = video_detect_force_native,
623632
/* Samsung N150P */

0 commit comments

Comments
 (0)