Change 0x%p to %p. Thanks Stefan for catching the one I introduced in 3931.
Signed-off-by: Myles Watson <mylesgw@gmail.com> Acked-by: Myles Watson <mylesgw@gmail.com> git-svn-id: svn://svn.coreboot.org/coreboot/trunk@3933 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
This commit is contained in:
parent
cd7e9b55dd
commit
94e340b22a
|
@ -25,7 +25,7 @@ static void check_pirq_routing_table(struct irq_routing_table *rt)
|
||||||
for (i = 0; i < rt->size; i++)
|
for (i = 0; i < rt->size; i++)
|
||||||
sum += addr[i];
|
sum += addr[i];
|
||||||
|
|
||||||
printk_debug("%s(): Interrupt Routing Table located at 0x%p.\n",
|
printk_debug("%s(): Interrupt Routing Table located at %p.\n",
|
||||||
__FUNCTION__, addr);
|
__FUNCTION__, addr);
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -590,7 +590,7 @@ int elfload(struct lb_memory *mem,
|
||||||
/* Reset to booting from this image as late as possible */
|
/* Reset to booting from this image as late as possible */
|
||||||
boot_successful();
|
boot_successful();
|
||||||
|
|
||||||
printk_debug("Jumping to boot code at 0x%p\n", entry);
|
printk_debug("Jumping to boot code at %p\n", entry);
|
||||||
post_code(0xfe);
|
post_code(0xfe);
|
||||||
|
|
||||||
/* Jump to kernel */
|
/* Jump to kernel */
|
||||||
|
|
|
@ -196,7 +196,7 @@ u8 *mem_ptr(u32 addr, int size)
|
||||||
//printk("It's a0000\n");
|
//printk("It's a0000\n");
|
||||||
addr &= ~0xfffe0000;
|
addr &= ~0xfffe0000;
|
||||||
retaddr = (u8 *) (M.abseg + addr);
|
retaddr = (u8 *) (M.abseg + addr);
|
||||||
//printk("retaddr now 0x%p\n", retaddr);
|
//printk("retaddr now %p\n", retaddr);
|
||||||
} else if (addr < 0x200) {
|
} else if (addr < 0x200) {
|
||||||
printk("updating int vector 0x%x\n", addr >> 2);
|
printk("updating int vector 0x%x\n", addr >> 2);
|
||||||
retaddr = (u8 *) (M.mem_base + addr);
|
retaddr = (u8 *) (M.mem_base + addr);
|
||||||
|
|
Loading…
Reference in New Issue