Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1758524AbYLKWOX (ORCPT ); Thu, 11 Dec 2008 17:14:23 -0500 Received: (majordomo@vger.kernel.org) by vger.kernel.org id S1756940AbYLKWNt (ORCPT ); Thu, 11 Dec 2008 17:13:49 -0500 Received: from mx1.redhat.com ([66.187.233.31]:32830 "EHLO mx1.redhat.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1756804AbYLKWNs (ORCPT ); Thu, 11 Dec 2008 17:13:48 -0500 From: Adam Jackson To: linux-kernel@vger.kernel.org Cc: Adam Jackson Subject: [PATCH] ACPI: Silence blacklist warnings. Date: Thu, 11 Dec 2008 17:13:43 -0500 Message-Id: <1229033625-30825-2-git-send-email-ajax@redhat.com> In-Reply-To: <1229033625-30825-1-git-send-email-ajax@redhat.com> References: <1229033625-30825-1-git-send-email-ajax@redhat.com> Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 1505 Lines: 42 If you have a machine that matches these warnings, there's almost certainly nothing you can do about it, so don't punish quiet boot. Signed-off-by: Adam Jackson --- drivers/acpi/blacklist.c | 6 +++--- 1 files changed, 3 insertions(+), 3 deletions(-) diff --git a/drivers/acpi/blacklist.c b/drivers/acpi/blacklist.c index 09c6980..786376e 100644 --- a/drivers/acpi/blacklist.c +++ b/drivers/acpi/blacklist.c @@ -81,18 +81,18 @@ static int __init blacklist_by_year(void) int year = dmi_get_year(DMI_BIOS_DATE); /* Doesn't exist? Likely an old system */ if (year == -1) { - printk(KERN_ERR PREFIX "no DMI BIOS year, " + printk(KERN_INFO PREFIX "no DMI BIOS year, " "acpi=force is required to enable ACPI\n" ); return 1; } /* 0? Likely a buggy new BIOS */ if (year == 0) { - printk(KERN_ERR PREFIX "DMI BIOS year==0, " + printk(KERN_INFO PREFIX "DMI BIOS year==0, " "assuming ACPI-capable machine\n" ); return 0; } if (year < CONFIG_ACPI_BLACKLIST_YEAR) { - printk(KERN_ERR PREFIX "BIOS age (%d) fails cutoff (%d), " + printk(KERN_INFO PREFIX "BIOS age (%d) fails cutoff (%d), " "acpi=force is required to enable ACPI\n", year, CONFIG_ACPI_BLACKLIST_YEAR); return 1; -- 1.6.0.3 -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/