aboutsummaryrefslogtreecommitdiffstats
path: root/arch/x86/kernel/setup.c
diff options
context:
space:
mode:
authorIngo Molnar <mingo@elte.hu>2009-09-02 02:17:56 -0400
committerIngo Molnar <mingo@elte.hu>2009-09-02 02:17:56 -0400
commit936e894a976dd3b0f07f1f6f43c17b77b7e6146d (patch)
tree5ed5c1f6735dcd26550594df23c8f7fe2aa21a15 /arch/x86/kernel/setup.c
parent69575d388603365f2afbf4166df93152df59b165 (diff)
parent326ba5010a5429a5a528b268b36a5900d4ab0eba (diff)
Merge commit 'v2.6.31-rc8' into x86/txt
Conflicts: arch/x86/kernel/reboot.c security/Kconfig Merge reason: resolve the conflicts, bump up from rc3 to rc8. Signed-off-by: Ingo Molnar <mingo@elte.hu>
Diffstat (limited to 'arch/x86/kernel/setup.c')
-rw-r--r--arch/x86/kernel/setup.c13
1 files changed, 13 insertions, 0 deletions
diff --git a/arch/x86/kernel/setup.c b/arch/x86/kernel/setup.c
index 6ce0d6f38f7f..61f86f241420 100644
--- a/arch/x86/kernel/setup.c
+++ b/arch/x86/kernel/setup.c
@@ -673,6 +673,19 @@ static struct dmi_system_id __initdata bad_bios_dmi_table[] = {
673 DMI_MATCH(DMI_BIOS_VENDOR, "Phoenix Technologies"), 673 DMI_MATCH(DMI_BIOS_VENDOR, "Phoenix Technologies"),
674 }, 674 },
675 }, 675 },
676 {
677 /*
678 * AMI BIOS with low memory corruption was found on Intel DG45ID board.
679 * It hase different DMI_BIOS_VENDOR = "Intel Corp.", for now we will
680 * match only DMI_BOARD_NAME and see if there is more bad products
681 * with this vendor.
682 */
683 .callback = dmi_low_memory_corruption,
684 .ident = "AMI BIOS",
685 .matches = {
686 DMI_MATCH(DMI_BOARD_NAME, "DG45ID"),
687 },
688 },
676#endif 689#endif
677 {} 690 {}
678}; 691};