hw/isa: Un-inline isa_bus_from_device()
No point in inlining isa_bus_from_device() which is only used at device realization time. Reviewed-by: Richard Henderson <richard.henderson@linaro.org> Signed-off-by: Philippe Mathieu-Daudé <philmd@linaro.org> Message-Id: <20230210163744.32182-9-philmd@linaro.org> Reviewed-by: Bernhard Beschow <shentey@gmail.com>
This commit is contained in:
parent
88b5877734
commit
23c69bb822
@ -164,6 +164,11 @@ bool isa_realize_and_unref(ISADevice *dev, ISABus *bus, Error **errp)
|
|||||||
return qdev_realize_and_unref(&dev->parent_obj, &bus->parent_obj, errp);
|
return qdev_realize_and_unref(&dev->parent_obj, &bus->parent_obj, errp);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
ISABus *isa_bus_from_device(ISADevice *dev)
|
||||||
|
{
|
||||||
|
return ISA_BUS(qdev_get_parent_bus(DEVICE(dev)));
|
||||||
|
}
|
||||||
|
|
||||||
ISADevice *isa_vga_init(ISABus *bus)
|
ISADevice *isa_vga_init(ISABus *bus)
|
||||||
{
|
{
|
||||||
vga_interface_created = true;
|
vga_interface_created = true;
|
||||||
|
@ -83,6 +83,7 @@ qemu_irq isa_get_irq(ISADevice *dev, unsigned isairq);
|
|||||||
void isa_connect_gpio_out(ISADevice *isadev, int gpioirq, unsigned isairq);
|
void isa_connect_gpio_out(ISADevice *isadev, int gpioirq, unsigned isairq);
|
||||||
MemoryRegion *isa_address_space(ISADevice *dev);
|
MemoryRegion *isa_address_space(ISADevice *dev);
|
||||||
MemoryRegion *isa_address_space_io(ISADevice *dev);
|
MemoryRegion *isa_address_space_io(ISADevice *dev);
|
||||||
|
ISABus *isa_bus_from_device(ISADevice *dev);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* isa_register_ioport: Install an I/O port region on the ISA bus.
|
* isa_register_ioport: Install an I/O port region on the ISA bus.
|
||||||
@ -120,9 +121,4 @@ int isa_register_portio_list(ISADevice *dev,
|
|||||||
const MemoryRegionPortio *portio,
|
const MemoryRegionPortio *portio,
|
||||||
void *opaque, const char *name);
|
void *opaque, const char *name);
|
||||||
|
|
||||||
static inline ISABus *isa_bus_from_device(ISADevice *d)
|
|
||||||
{
|
|
||||||
return ISA_BUS(qdev_get_parent_bus(DEVICE(d)));
|
|
||||||
}
|
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
Loading…
Reference in New Issue
Block a user