mirror of
https://gitlab.com/qemu-project/qemu
synced 2024-11-05 20:35:44 +00:00
Fix compile error when LSI_DEBUG is defined
This patch fixes the follow error when LSI_DEBUG is set. CC libhw64/lsi53c895a.o cc1: warnings being treated as errors qemu/hw/lsi53c895a.c: In function 'lsi_io_mapfunc': qemu/hw/lsi53c895a.c:1932: error: format '%08x' expects type 'unsigned int', but argument 2 has type 'pcibus_t' qemu/hw/lsi53c895a.c: In function 'lsi_ram_mapfunc': /qemu/hw/lsi53c895a.c:1947: error: format '%08x' expects type 'unsigned int', but argument 2 has type 'pcibus_t' qemu/hw/lsi53c895a.c: In function 'lsi_mmio_mapfunc': qemu/hw/lsi53c895a.c:1957: error: format '%08x' expects type 'unsigned int', but argument 2 has type 'pcibus_t' make[1]: *** [lsi53c895a.o] Error 1 make: *** [subdir-libhw64] Error 2 Signed-off-by: Ryan Harper <ryanh@us.ibm.com> Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
This commit is contained in:
parent
01d86a8544
commit
b4b2f05403
1 changed files with 3 additions and 3 deletions
|
@ -1973,7 +1973,7 @@ static void lsi_io_mapfunc(PCIDevice *pci_dev, int region_num,
|
|||
{
|
||||
LSIState *s = DO_UPCAST(LSIState, dev, pci_dev);
|
||||
|
||||
DPRINTF("Mapping IO at %08x\n", addr);
|
||||
DPRINTF("Mapping IO at %08"FMT_PCIBUS"\n", addr);
|
||||
|
||||
register_ioport_write(addr, 256, 1, lsi_io_writeb, s);
|
||||
register_ioport_read(addr, 256, 1, lsi_io_readb, s);
|
||||
|
@ -1988,7 +1988,7 @@ static void lsi_ram_mapfunc(PCIDevice *pci_dev, int region_num,
|
|||
{
|
||||
LSIState *s = DO_UPCAST(LSIState, dev, pci_dev);
|
||||
|
||||
DPRINTF("Mapping ram at %08x\n", addr);
|
||||
DPRINTF("Mapping ram at %08"FMT_PCIBUS"\n", addr);
|
||||
s->script_ram_base = addr;
|
||||
cpu_register_physical_memory(addr + 0, 0x2000, s->ram_io_addr);
|
||||
}
|
||||
|
@ -1998,7 +1998,7 @@ static void lsi_mmio_mapfunc(PCIDevice *pci_dev, int region_num,
|
|||
{
|
||||
LSIState *s = DO_UPCAST(LSIState, dev, pci_dev);
|
||||
|
||||
DPRINTF("Mapping registers at %08x\n", addr);
|
||||
DPRINTF("Mapping registers at %08"FMT_PCIBUS"\n", addr);
|
||||
cpu_register_physical_memory(addr + 0, 0x400, s->mmio_io_addr);
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue