summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPeter Jones <pjones@redhat.com>2006-03-08 18:56:38 +0000
committerPeter Jones <pjones@redhat.com>2006-03-08 18:56:38 +0000
commit9893f8ceb228d3769176a439523ad4e51f9c72ce (patch)
tree140b7a5da0ebeabc104965b644b1ae095d372793
parent3082cb8a5dd9cbf25bcd10d15416cfe5e274b60a (diff)
downloadanaconda-9893f8ceb228d3769176a439523ad4e51f9c72ce.tar.gz
anaconda-9893f8ceb228d3769176a439523ad4e51f9c72ce.tar.xz
anaconda-9893f8ceb228d3769176a439523ad4e51f9c72ce.zip
- "0x%p" looks really stupid.
-rw-r--r--isys/acpi.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/isys/acpi.c b/isys/acpi.c
index 07e66f914..5935f3d9f 100644
--- a/isys/acpi.c
+++ b/isys/acpi.c
@@ -701,7 +701,7 @@ static void acpi_table_print(struct acpi_table_header *header, unsigned long phy
name = header->signature;
printk(KERN_DEBUG PREFIX
- "%.4s (v%3.3d %6.6s %8.8s 0x%08x %.4s 0x%08x) @ 0x%p\n", name,
+ "%.4s (v%3.3d %6.6s %8.8s 0x%08x %.4s 0x%08x) @ %p\n", name,
header->revision, header->oem_id, header->oem_table_id,
header->oem_revision, header->asl_compiler_id,
header->asl_compiler_revision, (void *)phys_addr);
@@ -1105,7 +1105,7 @@ static int acpi_table_init(void)
}
printk(KERN_DEBUG PREFIX
- "RSDP (v%3.3d %6.6s ) @ 0x%p\n",
+ "RSDP (v%3.3d %6.6s ) @ %p\n",
rsdp->revision, rsdp->oem_id, (void *)rsdp_phys);
if (rsdp->revision < 2)