diff options
author | Hans de Goede <hdegoede@redhat.com> | 2016-01-14 08:24:39 -0500 |
---|---|---|
committer | Rafael J. Wysocki <rafael.j.wysocki@intel.com> | 2016-01-15 16:10:43 -0500 |
commit | b21f2e81bd3fd8ed260590e72901254bca2193cd (patch) | |
tree | fde62db168084f727988e319c429f7ea4cbb4dc6 /drivers/acpi | |
parent | 95565f884137e5d38caaa674a6813d854713e801 (diff) |
ACPI / video: Add disable_backlight_sysfs_if quirk for the Toshiba Satellite R830
The Toshiba Satellite R830 needs disable_backlight_sysfs_if=1, just like
the Toshiba Portege R830. Add a quirk for this.
Link: https://bugzilla.kernel.org/show_bug.cgi?id=21012
Cc: 4.2+ <stable@vger.kernel.org> # 4.2+
Tested-by: To Do <entodoays@gmail.com>
Signed-off-by: Hans de Goede <hdegoede@redhat.com>
Signed-off-by: Rafael J. Wysocki <rafael.j.wysocki@intel.com>
Diffstat (limited to 'drivers/acpi')
-rw-r--r-- | drivers/acpi/acpi_video.c | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/drivers/acpi/acpi_video.c b/drivers/acpi/acpi_video.c index 408b014f8b64..a76f8be1bfe7 100644 --- a/drivers/acpi/acpi_video.c +++ b/drivers/acpi/acpi_video.c | |||
@@ -496,6 +496,15 @@ static struct dmi_system_id video_dmi_table[] = { | |||
496 | DMI_MATCH(DMI_PRODUCT_NAME, "PORTEGE R830"), | 496 | DMI_MATCH(DMI_PRODUCT_NAME, "PORTEGE R830"), |
497 | }, | 497 | }, |
498 | }, | 498 | }, |
499 | { | ||
500 | /* https://bugzilla.kernel.org/show_bug.cgi?id=21012 */ | ||
501 | .callback = video_disable_backlight_sysfs_if, | ||
502 | .ident = "Toshiba Satellite R830", | ||
503 | .matches = { | ||
504 | DMI_MATCH(DMI_SYS_VENDOR, "TOSHIBA"), | ||
505 | DMI_MATCH(DMI_PRODUCT_NAME, "SATELLITE R830"), | ||
506 | }, | ||
507 | }, | ||
499 | /* | 508 | /* |
500 | * Some machine's _DOD IDs don't have bit 31(Device ID Scheme) set | 509 | * Some machine's _DOD IDs don't have bit 31(Device ID Scheme) set |
501 | * but the IDs actually follow the Device ID Scheme. | 510 | * but the IDs actually follow the Device ID Scheme. |