diff options
author | Stefan Reinauer <stepan@openbios.org> | 2006-04-24 16:56:05 +0000 |
---|---|---|
committer | Stefan Reinauer <stepan@openbios.org> | 2006-04-24 16:56:05 +0000 |
commit | 6c20eb440020803f89f3679c3fa80ddcb233c053 (patch) | |
tree | d6fa6846680f583210e1ad3da47e457b427e50c7 /src | |
parent | 2a7352cb9dd7211c9a7edbef5145dd59df264644 (diff) |
hex values with 0x prefix
git-svn-id: svn://svn.coreboot.org/coreboot/trunk@2274 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
Diffstat (limited to 'src')
-rw-r--r-- | src/devices/pci_rom.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/devices/pci_rom.c b/src/devices/pci_rom.c index fbc6130bc3..3c032b2ac1 100644 --- a/src/devices/pci_rom.c +++ b/src/devices/pci_rom.c @@ -93,14 +93,14 @@ struct rom_header *pci_rom_load(struct device *dev, struct rom_header *rom_heade #if CONFIG_CONSOLE_VGA_MULTI == 0 if (dev != vga_pri) return NULL; // only one VGA supported #endif - printk_debug("copying VGA ROM Image from %x to %x, %x bytes\n", + printk_debug("copying VGA ROM Image from 0x%x to 0x%x, 0x%x bytes\n", rom_header, PCI_VGA_RAM_IMAGE_START, rom_size); memcpy(PCI_VGA_RAM_IMAGE_START, rom_header, rom_size); vga_inited = 1; return (struct rom_header *) (PCI_VGA_RAM_IMAGE_START); #endif } else { - printk_debug("copying non-VGA ROM Image from %x to %x, %x bytes\n", + printk_debug("copying non-VGA ROM Image from 0x%x to 0x%x, 0x%x bytes\n", rom_header, pci_ram_image_start, rom_size); memcpy(pci_ram_image_start, rom_header, rom_size); pci_ram_image_start += rom_size; |