On 01/05/2010 04:30 AM, Christian Hofstaedtler wrote: > Newer hardware is assumed to no longer reboot succesfully using the > keyboard controller, but needs to use ACPI instead. > To not cause problems with older hardware, only hardware with a BIOS > date 2006 or newer is considered for this choice. > > Also unifiy reboot_type selection code. > > + } > + /* 0? Likely a buggy new BIOS */ > + if (year == 0) { > + printk(KERN_ERR "reboot: DMI BIOS year==0, " > + "assuming ACPI-reboot-capable machine\n"); > + return 1; > + } > + /* 2006 was decided as the cut-off year. */ > + if (year < 2006) { > + return 0; > + } > + return 1; > +} > + Why assume it is a buggy *new* BIOS rather than a buggy *old* BIOS? -hpa -- H. Peter Anvin, Intel Open Source Technology Center I work for Intel. I don't speak on their behalf. -- To unsubscribe from this list: send the line "unsubscribe linux-acpi" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html