From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752763Ab1A1VOu (ORCPT ); Fri, 28 Jan 2011 16:14:50 -0500 Received: from www17.your-server.de ([213.133.104.17]:49515 "EHLO www17.your-server.de" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751282Ab1A1VOs (ORCPT ); Fri, 28 Jan 2011 16:14:48 -0500 Subject: Re: 2.6.38-rc2: acpi backlight control missing From: Thomas Meyer To: "Rafael J. Wysocki" , rui.zhang@intel.com, len.brown@intel.com Cc: Linux Kernel Mailing List , ACPI Devel Mailing List In-Reply-To: <201101222043.07703.rjw@sisk.pl> References: <1295693349.2120.3.camel@localhost.localdomain> <201101222043.07703.rjw@sisk.pl> Content-Type: text/plain; charset="UTF-8" Date: Fri, 28 Jan 2011 22:12:05 +0100 Message-ID: <1296249125.2006.7.camel@localhost.localdomain> Mime-Version: 1.0 X-Mailer: Evolution 2.32.1 (2.32.1-1.fc14) Content-Transfer-Encoding: 7bit X-Authenticated-Sender: thomas@m3y3r.de Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Am Samstag, den 22.01.2011, 20:43 +0100 schrieb Rafael J. Wysocki: > On Saturday, January 22, 2011, Thomas Meyer wrote: > > with 2.6.38-rc2 the acpi backlight is gone: > > > > any ideas? > > Not really, but Matthew may have some (CCed). Okay, found the problem. This commit broke my backlight: commit 677bd810eedce61edf15452491781ff046b92edc Author: Zhang Rui Date: Mon Dec 6 15:04:21 2010 +0800 ACPI video: remove output switching control This is because in function "acpi_is_video_device()" (drivers/acpi/video_detect.c) the backlight device is only checked when some video capabilities were found, but by removing the check for the VIDEO_OUTPUT_SWITCHING (that seems to be the only video capability on my system) the check for the backlight device isn't done anymore. by reverting above commit, the backlight is back again. kind regards thomas