Commit 3bcdc7f1 authored by Len Brown's avatar Len Brown Committed by Len Brown

[ACPI] survive a BIOS that erroneously supplies multiple MADTs

http://bugzilla.redhat.com/beta2/show_bug.cgi?id=135449Signed-off-by: default avatarLen Brown <len.brown@intel.com>
parent 1fbd8e90
...@@ -742,7 +742,7 @@ acpi_process_madt(void) ...@@ -742,7 +742,7 @@ acpi_process_madt(void)
int count, error; int count, error;
count = acpi_table_parse(ACPI_APIC, acpi_parse_madt); count = acpi_table_parse(ACPI_APIC, acpi_parse_madt);
if (count == 1) { if (count >= 1) {
/* /*
* Parse MADT LAPIC entries * Parse MADT LAPIC entries
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment