diff options
author | Hervé Poussineau | 2011-12-15 22:09:51 +0100 |
---|---|---|
committer | Anthony Liguori | 2011-12-20 22:44:30 +0100 |
commit | 48a18b3c698295e4d891f34e919615e84e20f027 (patch) | |
tree | 689d5ec205341895b0eef457f3c0313be53b5432 /hw/m48t59.c | |
parent | net: store guest timestamp in dump file instead of time since guest startup (diff) | |
download | qemu-48a18b3c698295e4d891f34e919615e84e20f027.tar.gz qemu-48a18b3c698295e4d891f34e919615e84e20f027.tar.xz qemu-48a18b3c698295e4d891f34e919615e84e20f027.zip |
isa: give ISABus/ISADevice to isa_create(), isa_bus_irqs() and isa_get_irq() functions
NULL is a valid bus/device, so there is no change in behaviour.
Signed-off-by: Hervé Poussineau <hpoussin@reactos.org>
Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
Diffstat (limited to 'hw/m48t59.c')
-rw-r--r-- | hw/m48t59.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/hw/m48t59.c b/hw/m48t59.c index 8d8d495d7a..c0439966cf 100644 --- a/hw/m48t59.c +++ b/hw/m48t59.c @@ -660,13 +660,14 @@ M48t59State *m48t59_init(qemu_irq IRQ, target_phys_addr_t mem_base, return state; } -M48t59State *m48t59_init_isa(uint32_t io_base, uint16_t size, int type) +M48t59State *m48t59_init_isa(ISABus *bus, uint32_t io_base, uint16_t size, + int type) { M48t59ISAState *d; ISADevice *dev; M48t59State *s; - dev = isa_create("m48t59_isa"); + dev = isa_create(bus, "m48t59_isa"); qdev_prop_set_uint32(&dev->qdev, "type", type); qdev_prop_set_uint32(&dev->qdev, "size", size); qdev_prop_set_uint32(&dev->qdev, "io_base", io_base); |