Skip to content

Commit 574160b

Browse files
VorpalBladerafaeljw
authored andcommitted
ACPI: video: Add Toshiba Satellite/Portege Z830 quirk
Toshiba Satellite Z830 needs the quirk video_disable_backlight_sysfs_if for proper backlight control after suspend/resume cycles. Toshiba Portege Z830 is simply the same laptop rebranded for certain markets (I looked through the manual to other language sections to confirm this) and thus also needs this quirk. Thanks to Hans de Goede for suggesting this fix. Link: https://www.spinics.net/lists/platform-driver-x86/msg34394.html Suggested-by: Hans de Goede <[email protected]> Signed-off-by: Arvid Norlander <[email protected]> Reviewed-by: Hans de Goede <[email protected]> Tested-by: Arvid Norlander <[email protected]> Signed-off-by: Rafael J. Wysocki <[email protected]>
1 parent b90cb10 commit 574160b

File tree

1 file changed

+16
-0
lines changed

1 file changed

+16
-0
lines changed

drivers/acpi/acpi_video.c

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -496,6 +496,22 @@ static const struct dmi_system_id video_dmi_table[] = {
496496
DMI_MATCH(DMI_PRODUCT_NAME, "SATELLITE R830"),
497497
},
498498
},
499+
{
500+
.callback = video_disable_backlight_sysfs_if,
501+
.ident = "Toshiba Satellite Z830",
502+
.matches = {
503+
DMI_MATCH(DMI_SYS_VENDOR, "TOSHIBA"),
504+
DMI_MATCH(DMI_PRODUCT_NAME, "SATELLITE Z830"),
505+
},
506+
},
507+
{
508+
.callback = video_disable_backlight_sysfs_if,
509+
.ident = "Toshiba Portege Z830",
510+
.matches = {
511+
DMI_MATCH(DMI_SYS_VENDOR, "TOSHIBA"),
512+
DMI_MATCH(DMI_PRODUCT_NAME, "PORTEGE Z830"),
513+
},
514+
},
499515
/*
500516
* Some machine's _DOD IDs don't have bit 31(Device ID Scheme) set
501517
* but the IDs actually follow the Device ID Scheme.

0 commit comments

Comments
 (0)