diff options
author | Hans de Goede <hdegoede@redhat.com> | 2020-03-31 14:36:23 +0200 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2020-07-22 09:32:59 +0200 |
commit | 18f2cbb28730a31571e91128ea1bbc85774a0e89 (patch) | |
tree | 712ac8c6ad274e6ce0a34cd3a18f98f19c206def /drivers/acpi | |
parent | dc1e4db658a6597a377397d4ce6f34cbbaa031b5 (diff) | |
download | linux-stable-18f2cbb28730a31571e91128ea1bbc85774a0e89.tar.gz linux-stable-18f2cbb28730a31571e91128ea1bbc85774a0e89.tar.bz2 linux-stable-18f2cbb28730a31571e91128ea1bbc85774a0e89.zip |
ACPI: video: Use native backlight on Acer Aspire 5783z
[ Upstream commit 1c8fbc1f9bfb804ef2f0d4ee9397ab800e33f23a ]
The Acer Aspire 5783z shipped with Windows 7 and as such does not trigger
our "win8 ready" heuristic for prefering the native backlight interface.
Still ACPI backlight control doesn't work on this model, where as the
native (intel_video) backlight interface does work. Add a quirk to
force using native backlight control on this model.
Signed-off-by: Hans de Goede <hdegoede@redhat.com>
Signed-off-by: Rafael J. Wysocki <rafael.j.wysocki@intel.com>
Signed-off-by: Sasha Levin <sashal@kernel.org>
Diffstat (limited to 'drivers/acpi')
-rw-r--r-- | drivers/acpi/video_detect.c | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/drivers/acpi/video_detect.c b/drivers/acpi/video_detect.c index e63fd7bfd3a5..8daeeb5e3eb6 100644 --- a/drivers/acpi/video_detect.c +++ b/drivers/acpi/video_detect.c @@ -336,6 +336,15 @@ static const struct dmi_system_id video_detect_dmi_table[] = { DMI_MATCH(DMI_PRODUCT_NAME, "Precision 7510"), }, }, + { + .callback = video_detect_force_native, + .ident = "Acer Aspire 5738z", + .matches = { + DMI_MATCH(DMI_SYS_VENDOR, "Acer"), + DMI_MATCH(DMI_PRODUCT_NAME, "Aspire 5738"), + DMI_MATCH(DMI_BOARD_NAME, "JV50"), + }, + }, /* * Desktops which falsely report a backlight and which our heuristics |