diff options
author | David Gibson <david@gibson.dropbear.id.au> | 2007-04-24 01:05:18 -0400 |
---|---|---|
committer | Paul Mackerras <paulus@samba.org> | 2007-04-24 08:11:16 -0400 |
commit | 37f01d64d83705f82bb06eac8134acc8ef665565 (patch) | |
tree | 7b32d34e5538ab8dc0cfe482ebddf73e7eae2370 /arch/powerpc | |
parent | 30686ba6d56858657829d3eb524ed73e5dc98d2b (diff) |
[POWERPC] Abolish PHYS_FMT macro from arch/powerpc
32-bit powerpc systems define a macro, PHYS_FMT, giving a printf
format string fragment for displaying physical addresses, since most
32-bit powerpc platforms use 32-bit physical addresses but a few use
64-bit physical addresses.
This macro is used in exactly one place, a rare error message, where
we can solve the problem more simply by just unconditionally casting
the address up to 64-bit quantity before formatting it.
This patch does so, meaning that as we bring MMU definitions from
asm-ppc over to asm-powerpc, cleaning them up in the process, we don't
need to implement this ugly macro (which additionally has a very bad
name for something global).
Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
Signed-off-by: Paul Mackerras <paulus@samba.org>
Diffstat (limited to 'arch/powerpc')
-rw-r--r-- | arch/powerpc/mm/pgtable_32.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/powerpc/mm/pgtable_32.c b/arch/powerpc/mm/pgtable_32.c index 8a2fc16ee0a7..bca560374927 100644 --- a/arch/powerpc/mm/pgtable_32.c +++ b/arch/powerpc/mm/pgtable_32.c | |||
@@ -183,8 +183,8 @@ __ioremap(phys_addr_t addr, unsigned long size, unsigned long flags) | |||
183 | * mem_init() sets high_memory so only do the check after that. | 183 | * mem_init() sets high_memory so only do the check after that. |
184 | */ | 184 | */ |
185 | if (mem_init_done && (p < virt_to_phys(high_memory))) { | 185 | if (mem_init_done && (p < virt_to_phys(high_memory))) { |
186 | printk("__ioremap(): phys addr "PHYS_FMT" is RAM lr %p\n", p, | 186 | printk("__ioremap(): phys addr 0x%llx is RAM lr %p\n", |
187 | __builtin_return_address(0)); | 187 | (unsigned long long)p, __builtin_return_address(0)); |
188 | return NULL; | 188 | return NULL; |
189 | } | 189 | } |
190 | 190 | ||