diff mbox series

acpi: madt: fix typo of madt subnames

Message ID 20231215110637.108141-1-ivan.hu@canonical.com
State Accepted
Headers show
Series acpi: madt: fix typo of madt subnames | expand

Commit Message

Ivan Hu Dec. 15, 2023, 11:06 a.m. UTC
No function impact.

Signed-off-by: Ivan Hu <ivan.hu@canonical.com>
---
 src/acpi/madt/madt.c | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)
diff mbox series

Patch

diff --git a/src/acpi/madt/madt.c b/src/acpi/madt/madt.c
index 318ac668..657d0190 100644
--- a/src/acpi/madt/madt.c
+++ b/src/acpi/madt/madt.c
@@ -575,10 +575,10 @@  static const char *madt_sub_names[] = {
 	/* 0x12 */ "LIO PIC",
 	/* 0x13 */ "HT PIC",
 	/* 0x14 */ "EIO PIC",
-	/* 0x16 */ "MSI PIC",
-	/* 0x17 */ "BIO PIC",
-	/* 0x18 */ "LPC PIC",
-	/* 0x11 - 0x7f */ "Reserved. OSPM skips structures of the reserved type.",
+	/* 0x15 */ "MSI PIC",
+	/* 0x16 */ "BIO PIC",
+	/* 0x17 */ "LPC PIC",
+	/* 0x18 - 0x7f */ "Reserved. OSPM skips structures of the reserved type.",
 	/* 0x80 - 0xff */ "Reserved for OEM use",
 	NULL
 };