From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail177-1.suw61.mandrillapp.com ([198.2.177.1]:13464 "EHLO mail177-1.suw61.mandrillapp.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1753089AbcCAVmk (ORCPT ); Tue, 1 Mar 2016 16:42:40 -0500 Received: from pmta06.mandrill.prod.suw01.rsglab.com (127.0.0.1) by mail177-1.suw61.mandrillapp.com id hqo6d022rtka for ; Tue, 1 Mar 2016 21:42:36 +0000 (envelope-from ) From: Subject: Patch "ACPI / video: Add disable_backlight_sysfs_if quirk for the Toshiba Portege R700" has been added to the 4.4-stable tree To: , , , Cc: , Message-Id: <1456868554233139@kroah.com> Date: Tue, 01 Mar 2016 21:42:36 +0000 MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit Sender: stable-owner@vger.kernel.org List-ID: This is a note to let you know that I've just added the patch titled ACPI / video: Add disable_backlight_sysfs_if quirk for the Toshiba Portege R700 to the 4.4-stable tree which can be found at: http://www.kernel.org/git/?p=linux/kernel/git/stable/stable-queue.git;a=summary The filename of the patch is: acpi-video-add-disable_backlight_sysfs_if-quirk-for-the-toshiba-portege-r700.patch and it can be found in the queue-4.4 subdirectory. If you, or anyone else, feels it should not be added to the stable tree, please let know about it. >>From de588b8ff057d4de0751f337b930f90ca522bab2 Mon Sep 17 00:00:00 2001 From: Hans de Goede Date: Mon, 11 Jan 2016 14:46:17 +0100 Subject: ACPI / video: Add disable_backlight_sysfs_if quirk for the Toshiba Portege R700 From: Hans de Goede commit de588b8ff057d4de0751f337b930f90ca522bab2 upstream. The Toshiba Portege R700 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 Tested-by: Emma Reisz Signed-off-by: Hans de Goede Signed-off-by: Rafael J. Wysocki Signed-off-by: Greg Kroah-Hartman --- drivers/acpi/acpi_video.c | 9 +++++++++ 1 file changed, 9 insertions(+) --- a/drivers/acpi/acpi_video.c +++ b/drivers/acpi/acpi_video.c @@ -465,6 +465,15 @@ static struct dmi_system_id video_dmi_ta * as brightness control does not work. */ { + /* https://bugzilla.kernel.org/show_bug.cgi?id=21012 */ + .callback = video_disable_backlight_sysfs_if, + .ident = "Toshiba Portege R700", + .matches = { + DMI_MATCH(DMI_SYS_VENDOR, "TOSHIBA"), + DMI_MATCH(DMI_PRODUCT_NAME, "PORTEGE R700"), + }, + }, + { /* https://bugs.freedesktop.org/show_bug.cgi?id=82634 */ .callback = video_disable_backlight_sysfs_if, .ident = "Toshiba Portege R830", Patches currently in stable-queue which might be from hdegoede@redhat.com are queue-4.4/rc-sunxi-cir-initialize-the-spinlock-properly.patch queue-4.4/acpi-video-add-disable_backlight_sysfs_if-quirk-for-the-toshiba-satellite-r830.patch queue-4.4/acpi-video-add-disable_backlight_sysfs_if-quirk-for-the-toshiba-portege-r700.patch queue-4.4/acpi-revert-acpi-video-add-dell-inspiron-5737-to-the-blacklist.patch queue-4.4/gspca-ov534-topro-prevent-a-division-by-0.patch