From patchwork Thu Jun 5 20:27:05 2014 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: "Rafael J. Wysocki" X-Patchwork-Id: 4309291 Return-Path: X-Original-To: patchwork-dri-devel@patchwork.kernel.org Delivered-To: patchwork-parsemail@patchwork1.web.kernel.org Received: from mail.kernel.org (mail.kernel.org [198.145.19.201]) by patchwork1.web.kernel.org (Postfix) with ESMTP id A703D9F163 for ; Fri, 6 Jun 2014 00:32:59 +0000 (UTC) Received: from mail.kernel.org (localhost [127.0.0.1]) by mail.kernel.org (Postfix) with ESMTP id AB0E120265 for ; Fri, 6 Jun 2014 00:32:58 +0000 (UTC) Received: from gabe.freedesktop.org (gabe.freedesktop.org [131.252.210.177]) by mail.kernel.org (Postfix) with ESMTP id 109FC2020F for ; Fri, 6 Jun 2014 00:32:57 +0000 (UTC) Received: from gabe.freedesktop.org (localhost [127.0.0.1]) by gabe.freedesktop.org (Postfix) with ESMTP id AC20E6E21C; Thu, 5 Jun 2014 17:32:52 -0700 (PDT) X-Original-To: dri-devel@lists.freedesktop.org Delivered-To: dri-devel@lists.freedesktop.org Received: from v094114.home.net.pl (v094114.home.net.pl [79.96.170.134]) by gabe.freedesktop.org (Postfix) with SMTP id 1C0546E047 for ; Thu, 5 Jun 2014 13:09:54 -0700 (PDT) Received: from aeqw229.neoplus.adsl.tpnet.pl [79.191.178.229] (HELO vostro.rjw.lan) by serwer1319399.home.pl [79.96.170.134] with SMTP (IdeaSmtpServer v0.80) id 4727ef7fbd2037a0; Thu, 5 Jun 2014 22:09:48 +0200 From: "Rafael J. Wysocki" To: linux-acpi@vger.kernel.org Subject: [PATCH] ACPI / video: Change the default for video.use_native_backlight to 1 Date: Thu, 05 Jun 2014 22:27:05 +0200 Message-ID: <8608294.Ycsy0EoIBs@vostro.rjw.lan> User-Agent: KMail/4.11.5 (Linux/3.15.0-rc5+; KDE/4.11.5; x86_64; ; ) In-Reply-To: <1397160803-24297-1-git-send-email-matthew.garrett@nebula.com> References: <1397160803-24297-1-git-send-email-matthew.garrett@nebula.com> MIME-Version: 1.0 X-Mailman-Approved-At: Thu, 05 Jun 2014 17:32:52 -0700 Cc: Matthew Garrett , Aaron Lu , Linux Kernel Mailing List , Hans de Goede , dri-devel@lists.freedesktop.org X-BeenThere: dri-devel@lists.freedesktop.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: Direct Rendering Infrastructure - Development List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dri-devel-bounces@lists.freedesktop.org Sender: "dri-devel" X-Spam-Status: No, score=-4.8 required=5.0 tests=BAYES_00, RCVD_IN_DNSWL_MED, RP_MATCHES_RCVD, UNPARSEABLE_RELAY autolearn=unavailable version=3.3.1 X-Spam-Checker-Version: SpamAssassin 3.3.1 (2010-03-16) on mail.kernel.org X-Virus-Scanned: ClamAV using ClamSMTP From: Rafael J. Wysocki Now that we're hoping to have resolved all of the problems with video.use_native_backlight=1 make that the default at last. Signed-off-by: Rafael J. Wysocki --- Having forgotten that the Hans' patches didn't actually flip the default for this I kind of pre-anounced it in my last pull request, which was a mistake that I apologize for. That said, since everyone involved seemed to be supportive, I'm going to apply this one and push it to Linus next week. Please let me know if there are any objections. Rafael --- drivers/acpi/video.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) Index: linux-pm/drivers/acpi/video.c =================================================================== --- linux-pm.orig/drivers/acpi/video.c +++ linux-pm/drivers/acpi/video.c @@ -82,7 +82,7 @@ module_param(allow_duplicates, bool, 064 * For Windows 8 systems: used to decide if video module * should skip registering backlight interface of its own. */ -static int use_native_backlight_param = -1; +static int use_native_backlight_param = 1; module_param_named(use_native_backlight, use_native_backlight_param, int, 0444); static bool use_native_backlight_dmi = false;