Skip to content

Commit eb7b0f1

Browse files
jwrdegoederafaeljw
authored andcommitted
ACPI: video: Add force_vendor quirk for Panasonic Toughbook CF-18
The Panasonic Toughbook CF-18 advertises both native and vendor backlight control interfaces. But only the vendor one actually works. acpi_video_get_backlight_type() will pick the non working native backlight by default, add a quirk to select the working vendor backlight instead. Signed-off-by: Hans de Goede <[email protected]> Link: https://patch.msgid.link/[email protected] Signed-off-by: Rafael J. Wysocki <[email protected]>
1 parent 1728e57 commit eb7b0f1

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

drivers/acpi/video_detect.c

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -254,6 +254,14 @@ static const struct dmi_system_id video_detect_dmi_table[] = {
254254
DMI_MATCH(DMI_PRODUCT_NAME, "PCG-FRV35"),
255255
},
256256
},
257+
{
258+
.callback = video_detect_force_vendor,
259+
/* Panasonic Toughbook CF-18 */
260+
.matches = {
261+
DMI_MATCH(DMI_SYS_VENDOR, "Matsushita Electric Industrial"),
262+
DMI_MATCH(DMI_PRODUCT_NAME, "CF-18"),
263+
},
264+
},
257265

258266
/*
259267
* Toshiba models with Transflective display, these need to use

0 commit comments

Comments
 (0)