Jesse Keating 2f82dda
diff -up linux-2.6.26.noarch/drivers/acpi/blacklist.c.jx linux-2.6.26.noarch/drivers/acpi/blacklist.c
Jesse Keating 2f82dda
--- linux-2.6.26.noarch/drivers/acpi/blacklist.c.jx	2008-07-13 17:51:29.000000000 -0400
Jesse Keating 2f82dda
+++ linux-2.6.26.noarch/drivers/acpi/blacklist.c	2008-08-12 14:21:39.000000000 -0400
Jesse Keating 2f82dda
@@ -81,18 +81,18 @@ static int __init blacklist_by_year(void
Jesse Keating 2f82dda
 
Jesse Keating 2f82dda
 	/* Doesn't exist? Likely an old system */
Jesse Keating 2f82dda
 	if (!dmi_get_date(DMI_BIOS_DATE, &year, NULL, NULL)) {
Jesse Keating 2f82dda
-		printk(KERN_ERR PREFIX "no DMI BIOS year, "
Jesse Keating 2f82dda
+		printk(KERN_INFO PREFIX "no DMI BIOS year, "
Jesse Keating 2f82dda
 			"acpi=force is required to enable ACPI\n" );
Jesse Keating 2f82dda
 		return 1;
Jesse Keating 2f82dda
 	}
Jesse Keating 2f82dda
 	/* 0? Likely a buggy new BIOS */
Jesse Keating 2f82dda
 	if (year == 0) {
Jesse Keating 2f82dda
-		printk(KERN_ERR PREFIX "DMI BIOS year==0, "
Jesse Keating 2f82dda
+		printk(KERN_INFO PREFIX "DMI BIOS year==0, "
Jesse Keating 2f82dda
 			"assuming ACPI-capable machine\n" );
Jesse Keating 2f82dda
 		return 0;
Jesse Keating 2f82dda
 	}
Jesse Keating 2f82dda
 	if (year < CONFIG_ACPI_BLACKLIST_YEAR) {
Jesse Keating 2f82dda
-		printk(KERN_ERR PREFIX "BIOS age (%d) fails cutoff (%d), "
Jesse Keating 2f82dda
+		printk(KERN_INFO PREFIX "BIOS age (%d) fails cutoff (%d), "
Jesse Keating 2f82dda
 		       "acpi=force is required to enable ACPI\n",
Jesse Keating 2f82dda
 		       year, CONFIG_ACPI_BLACKLIST_YEAR);
Jesse Keating 2f82dda
 		return 1;