summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorErwan Velu <erwanaliasr1@gmail.com>2011-01-26 22:27:44 +0100
committerErwan Velu <erwanaliasr1@gmail.com>2011-01-26 22:27:44 +0100
commitb85a1abde1d4ce2356a73ad9399a74e9ebec2622 (patch)
treebe2bd9f23a10d98480823863bbf081d8e786c4f7
parentb1bb2511d86ae7350d82e3da1865621404d921f9 (diff)
downloadsyslinux-b85a1abde1d4ce2356a73ad9399a74e9ebec2622.tar.gz
ACPI: Displaying MADT as APIC
Kernel shows this table as APIC, let's do the same
-rw-r--r--com32/gpllib/acpi/madt.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/com32/gpllib/acpi/madt.c b/com32/gpllib/acpi/madt.c
index d93e4be2..b5b536fd 100644
--- a/com32/gpllib/acpi/madt.c
+++ b/com32/gpllib/acpi/madt.c
@@ -154,7 +154,7 @@ void parse_madt(s_acpi * acpi)
s_madt *m = &acpi->madt;
/* Fixing table name */
- memcpy(m->header.signature, MADT, sizeof(MADT));
+ memcpy(m->header.signature, APIC, sizeof(APIC));
/* Copying remaining structs */
q = (uint8_t *)m->address;