Author: myles
Date: 2009-02-10 04:02:05 +0100 (Tue, 10 Feb 2009)
New Revision: 3933

Modified:
   trunk/coreboot-v2/src/arch/i386/boot/pirq_routing.c
   trunk/coreboot-v2/src/boot/elfboot.c
   trunk/coreboot-v2/util/vgabios/x86emu/src/x86emu/sys.c
Log:
Change 0x%p to %p.  Thanks Stefan for catching the one I introduced in 3931.

Signed-off-by: Myles Watson <[email protected]>
Acked-by: Myles Watson <[email protected]>

Modified: trunk/coreboot-v2/src/arch/i386/boot/pirq_routing.c
===================================================================
--- trunk/coreboot-v2/src/arch/i386/boot/pirq_routing.c 2009-02-09 20:26:14 UTC 
(rev 3932)
+++ trunk/coreboot-v2/src/arch/i386/boot/pirq_routing.c 2009-02-10 03:02:05 UTC 
(rev 3933)
@@ -25,7 +25,7 @@
        for (i = 0; i < rt->size; 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);
 
        

Modified: trunk/coreboot-v2/src/boot/elfboot.c
===================================================================
--- trunk/coreboot-v2/src/boot/elfboot.c        2009-02-09 20:26:14 UTC (rev 
3932)
+++ trunk/coreboot-v2/src/boot/elfboot.c        2009-02-10 03:02:05 UTC (rev 
3933)
@@ -590,7 +590,7 @@
        /* Reset to booting from this image as late as possible */
        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);
 
        /* Jump to kernel */

Modified: trunk/coreboot-v2/util/vgabios/x86emu/src/x86emu/sys.c
===================================================================
--- trunk/coreboot-v2/util/vgabios/x86emu/src/x86emu/sys.c      2009-02-09 
20:26:14 UTC (rev 3932)
+++ trunk/coreboot-v2/util/vgabios/x86emu/src/x86emu/sys.c      2009-02-10 
03:02:05 UTC (rev 3933)
@@ -196,7 +196,7 @@
                //printk("It's a0000\n");
                addr &= ~0xfffe0000;
                retaddr = (u8 *) (M.abseg + addr);
-               //printk("retaddr now 0x%p\n", retaddr);
+               //printk("retaddr now %p\n", retaddr);
        } else if (addr < 0x200) {
                printk("updating int vector 0x%x\n", addr >> 2);
                retaddr = (u8 *) (M.mem_base + addr);


--
coreboot mailing list: [email protected]
http://www.coreboot.org/mailman/listinfo/coreboot

Reply via email to