Skip to content

Commit 2541718

Browse files
magciusrafaeljw
authored andcommitted
ACPI: video: Add DMI quirk for GIGABYTE GB-BXBT-2807
The GIGABYTE GB-BXBT-2807 is a mini-PC which uses off the shelf components, like an Intel GPU which is meant for mobile systems. As such, it, by default, has a backlight controller exposed. Unfortunately, the backlight controller only confuses userspace, which sees the existence of a backlight device node and has the unrealistic belief that there is actually a backlight there! Add a DMI quirk to force the backlight off on this system. Signed-off-by: Jasper St. Pierre <[email protected]> Reviewed-by: Chris Chiu <[email protected]> Signed-off-by: Rafael J. Wysocki <[email protected]>
1 parent 0477e92 commit 2541718

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

drivers/acpi/video_detect.c

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -140,6 +140,13 @@ static const struct dmi_system_id video_detect_dmi_table[] = {
140140
},
141141
{
142142
.callback = video_detect_force_vendor,
143+
.ident = "GIGABYTE GB-BXBT-2807",
144+
.matches = {
145+
DMI_MATCH(DMI_SYS_VENDOR, "GIGABYTE"),
146+
DMI_MATCH(DMI_PRODUCT_NAME, "GB-BXBT-2807"),
147+
},
148+
},
149+
{
143150
.ident = "Sony VPCEH3U1E",
144151
.matches = {
145152
DMI_MATCH(DMI_SYS_VENDOR, "Sony Corporation"),

0 commit comments

Comments
 (0)