aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--xen/arch/ia64/xen/dom_fw_dom0.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/xen/arch/ia64/xen/dom_fw_dom0.c b/xen/arch/ia64/xen/dom_fw_dom0.c
index 383845f3d4..91ec3bb1a7 100644
--- a/xen/arch/ia64/xen/dom_fw_dom0.c
+++ b/xen/arch/ia64/xen/dom_fw_dom0.c
@@ -154,6 +154,8 @@ acpi_restore_tables()
static int __init __acpi_table_disable(struct acpi_table_header *header)
{
+ printk("Disabling ACPI table: %4.4s\n", header->signature);
+
memcpy(header->oem_id, "xxxxxx", 6);
memcpy(header->oem_id+1, header->signature, 4);
memcpy(header->oem_table_id, "Xen ", 8);
@@ -161,7 +163,6 @@ static int __init __acpi_table_disable(struct acpi_table_header *header)
header->checksum = 0;
header->checksum = -acpi_tb_checksum((u8*)header, header->length);
- printk("Successfully Disabling %s\n", header->signature);
return 0;
}