From patchwork Fri Sep 3 02:08:50 2010 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Zhang Rui X-Patchwork-Id: 151881 Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by demeter1.kernel.org (8.14.4/8.14.3) with ESMTP id o8325l2x004848 for ; Fri, 3 Sep 2010 02:05:47 GMT Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752792Ab0ICCFq (ORCPT ); Thu, 2 Sep 2010 22:05:46 -0400 Received: from mga02.intel.com ([134.134.136.20]:14797 "EHLO mga02.intel.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752348Ab0ICCFq (ORCPT ); Thu, 2 Sep 2010 22:05:46 -0400 Received: from orsmga001.jf.intel.com ([10.7.209.18]) by orsmga101.jf.intel.com with ESMTP; 02 Sep 2010 19:05:38 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="4.56,310,1280732400"; d="scan'208";a="653798469" Received: from rui.sh.intel.com (HELO [10.239.51.31]) ([10.239.51.31]) by orsmga001.jf.intel.com with ESMTP; 02 Sep 2010 19:05:37 -0700 Subject: [PATCH RESEND] ACPI video: fix a poor warning message From: Zhang Rui To: "Brown, Len" Cc: "linux-acpi@vger.kernel.org" , "Moore, Robert" , Thomas Renninger , "Zhang, Rui" Date: Fri, 03 Sep 2010 10:08:50 +0800 Message-ID: <1283479730.2111.2856.camel@rui> Mime-Version: 1.0 X-Mailer: Evolution 2.28.3 Sender: linux-acpi-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-acpi@vger.kernel.org X-Greylist: IP, sender and recipient auto-whitelisted, not delayed by milter-greylist-4.2.3 (demeter1.kernel.org [140.211.167.41]); Fri, 03 Sep 2010 02:05:47 +0000 (UTC) Index: linux-2.6/drivers/acpi/video_detect.c =================================================================== --- linux-2.6.orig/drivers/acpi/video_detect.c 2010-09-03 10:04:05.000000000 +0800 +++ linux-2.6/drivers/acpi/video_detect.c 2010-09-03 10:05:07.000000000 +0800 @@ -59,8 +59,8 @@ "support\n")); *cap |= ACPI_VIDEO_BACKLIGHT; if (ACPI_FAILURE(acpi_get_handle(handle, "_BQC", &h_dummy))) - printk(KERN_WARNING FW_BUG PREFIX "ACPI brightness " - "control misses _BQC function\n"); + printk(KERN_WARNING FW_BUG PREFIX "No _BQC method, " + "cannot determine initial brightness\n"); /* We have backlight support, no need to scan further */ return AE_CTRL_TERMINATE; }