diff options
author | blueswir1 <blueswir1@c046a42c-6fe2-441c-8c8c-71466251a162> | 2007-05-30 18:54:40 +0000 |
---|---|---|
committer | blueswir1 <blueswir1@c046a42c-6fe2-441c-8c8c-71466251a162> | 2007-05-30 18:54:40 +0000 |
commit | fdf41d225e8c90f2822b4c706552e005837218a5 (patch) | |
tree | e6d4039add2f968fe920ad2b60d3fd9484424b32 /hw/apb_pci.c | |
parent | 49e9fba27138adb4ca52385f6ecc63b0ff0d3546 (diff) |
Replace target_ulong with target_phys_addr_t
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@2899 c046a42c-6fe2-441c-8c8c-71466251a162
Diffstat (limited to 'hw/apb_pci.c')
-rw-r--r-- | hw/apb_pci.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/hw/apb_pci.c b/hw/apb_pci.c index 627fd9bc07..38c56a2d4a 100644 --- a/hw/apb_pci.c +++ b/hw/apb_pci.c @@ -206,13 +206,13 @@ static void pci_apb_set_irq(qemu_irq *pic, int irq_num, int level) qemu_set_irq(pic[irq_num], level); } -PCIBus *pci_apb_init(target_ulong special_base, target_ulong mem_base, +PCIBus *pci_apb_init(target_phys_addr_t special_base, + target_phys_addr_t mem_base, qemu_irq *pic) { APBState *s; PCIDevice *d; int pci_mem_config, pci_mem_data, apb_config, pci_ioport; - PCIDevice *apb; PCIBus *secondary; s = qemu_mallocz(sizeof(APBState)); |