[PATCH 14/15] acpi: Reverse uid and apic_id print out for x2apic

From: Yinghai Lu
Date: Sat Oct 23 2010 - 21:07:31 EST


So make it have same sequence like old apic.

Signed-off-by: Yinghai Lu <yinghai@xxxxxxxxxx>
---
drivers/acpi/tables.c | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/drivers/acpi/tables.c b/drivers/acpi/tables.c
index 3e4a60e..4dffce0 100644
--- a/drivers/acpi/tables.c
+++ b/drivers/acpi/tables.c
@@ -67,8 +67,8 @@ void acpi_table_print_madt_entry(struct acpi_subtable_header *header)
struct acpi_madt_local_x2apic *p =
(struct acpi_madt_local_x2apic *)header;
printk(KERN_INFO PREFIX
- "X2APIC (apic_id[0x%02x] uid[0x%02x] %s)\n",
- p->local_apic_id, p->uid,
+ "X2APIC (uid[0x%02x] apic_id[0x%02x] %s)\n",
+ p->uid, p->local_apic_id,
(p->lapic_flags & ACPI_MADT_ENABLED) ?
"enabled" : "disabled");
}
--
1.7.1

--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/