We're printing out the ACPI table signature after we overwrite it
with "OEMx". Let's print it out before so we know that the table was.
Also limit print to 4 chars so we don't get garbage output.
Signed-off-by: Alex Williamson <alex.williamson@hp.com>
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);
header->checksum = 0;
header->checksum = -acpi_tb_checksum((u8*)header, header->length);
- printk("Successfully Disabling %s\n", header->signature);
return 0;
}