aboutsummaryrefslogtreecommitdiffstats
path: root/arch/x86/kernel/setup.c
diff options
context:
space:
mode:
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};