diff options
author | Hans de Goede <hdegoede@redhat.com> | 2014-08-28 04:20:47 -0400 |
---|---|---|
committer | Rafael J. Wysocki <rafael.j.wysocki@intel.com> | 2014-09-01 19:55:23 -0400 |
commit | 84c34858a85ecf9dabd72847d860c7d3fb7536e7 (patch) | |
tree | f7968e24a6494f8af9b7a2c78454bc2631d123d7 | |
parent | 5f24079b021cd3147c8d24ba65833f7a0df7e80d (diff) |
ACPI / video: Disable native_backlight on HP ENVY 15 Notebook PC
Link: https://bugs.freedesktop.org/show_bug.cgi?id=81515
Reported-and-tested-by: Hohahiu <rakothedin@gmail.com>
Cc: 3.16+ <stable@vger.kernel.org> # 3.16+
Signed-off-by: Hans de Goede <hdegoede@redhat.com>
Signed-off-by: Rafael J. Wysocki <rafael.j.wysocki@intel.com>
-rw-r--r-- | drivers/acpi/video.c | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/drivers/acpi/video.c b/drivers/acpi/video.c index dd5c30257b86..fcbda105616e 100644 --- a/drivers/acpi/video.c +++ b/drivers/acpi/video.c | |||
@@ -750,6 +750,17 @@ static struct dmi_system_id video_dmi_table[] __initdata = { | |||
750 | DMI_MATCH(DMI_PRODUCT_VERSION, "ThinkPad T520"), | 750 | DMI_MATCH(DMI_PRODUCT_VERSION, "ThinkPad T520"), |
751 | }, | 751 | }, |
752 | }, | 752 | }, |
753 | |||
754 | /* The native backlight controls do not work on some older machines */ | ||
755 | { | ||
756 | /* https://bugs.freedesktop.org/show_bug.cgi?id=81515 */ | ||
757 | .callback = video_disable_native_backlight, | ||
758 | .ident = "HP ENVY 15 Notebook", | ||
759 | .matches = { | ||
760 | DMI_MATCH(DMI_SYS_VENDOR, "Hewlett-Packard"), | ||
761 | DMI_MATCH(DMI_PRODUCT_NAME, "HP ENVY 15 Notebook PC"), | ||
762 | }, | ||
763 | }, | ||
753 | {} | 764 | {} |
754 | }; | 765 | }; |
755 | 766 | ||