70fa099
From 11f249c97a7a3031d083fb1c64c61801b7dba1f7 Mon Sep 17 00:00:00 2001
7fd1921
From: Hans de Goede <hdegoede@redhat.com>
7fd1921
Date: Mon, 2 Jun 2014 17:41:11 +0200
6a91557
Subject: [PATCH] acpi-video: Add use_native_backlight quirk for HP ProBook
6a91557
 4540s
7fd1921
7fd1921
As reported here:
7fd1921
https://bugzilla.redhat.com/show_bug.cgi?id=1025690
7fd1921
This is yet another model which needs this quirk.
7fd1921
6a91557
Bugzilla: 1025690
6a91557
Upstream-status: Waiting for feedback from reporter
6a91557
7fd1921
Cc: stable@vger.kernel.org
7fd1921
Signed-off-by: Hans de Goede <hdegoede@redhat.com>
7fd1921
---
7fd1921
 drivers/acpi/video.c | 8 ++++++++
7fd1921
 1 file changed, 8 insertions(+)
7fd1921
7fd1921
diff --git a/drivers/acpi/video.c b/drivers/acpi/video.c
6a91557
index eb82264d9ef9..34da76ffc59a 100644
7fd1921
--- a/drivers/acpi/video.c
7fd1921
+++ b/drivers/acpi/video.c
6a91557
@@ -687,6 +687,14 @@ static struct dmi_system_id video_dmi_table[] __initdata = {
7fd1921
 	},
7fd1921
 	{
7fd1921
 	.callback = video_set_use_native_backlight,
7fd1921
+	.ident = "HP ProBook 4540s",
7fd1921
+	.matches = {
7fd1921
+		DMI_MATCH(DMI_SYS_VENDOR, "Hewlett-Packard"),
7fd1921
+		DMI_MATCH(DMI_PRODUCT_VERSION, "HP ProBook 4540s"),
7fd1921
+		},
7fd1921
+	},
7fd1921
+	{
7fd1921
+	.callback = video_set_use_native_backlight,
7fd1921
 	.ident = "HP ProBook 2013 models",
7fd1921
 	.matches = {
7fd1921
 		DMI_MATCH(DMI_SYS_VENDOR, "Hewlett-Packard"),
7fd1921
-- 
6a91557
1.9.3
7fd1921