diff options
author | Avi Kivity <avi@redhat.com> | 2011-08-15 17:17:34 +0300 |
---|---|---|
committer | Anthony Liguori <aliguori@us.ibm.com> | 2011-08-22 10:47:48 -0500 |
commit | c5b3572fc64360152fe1ccb9e4b72d17770c55e7 (patch) | |
tree | d53692b20eba074fdbe7ba040462ab5ccfd56d61 /hw/sysbus.h | |
parent | cd0fa1e6d30b122dc239735e85853e7696e8e07a (diff) | |
download | qemu-c5b3572fc64360152fe1ccb9e4b72d17770c55e7.zip |
sysbus: remove sysbus_init_mmio_cb()
This problem with this function is that it is not reversible - it is
impossible to know where things are registered and unregister them
exactly. As there are no more users, we can remove it.
Signed-off-by: Avi Kivity <avi@redhat.com>
Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
Diffstat (limited to 'hw/sysbus.h')
-rw-r--r-- | hw/sysbus.h | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/hw/sysbus.h b/hw/sysbus.h index 16fd969409..b87c6c5aab 100644 --- a/hw/sysbus.h +++ b/hw/sysbus.h @@ -47,8 +47,6 @@ void sysbus_register_withprop(SysBusDeviceInfo *info); void *sysbus_new(void); void sysbus_init_mmio(SysBusDevice *dev, target_phys_addr_t size, ram_addr_t iofunc); -void sysbus_init_mmio_cb(SysBusDevice *dev, target_phys_addr_t size, - mmio_mapfunc cb); void sysbus_init_mmio_cb2(SysBusDevice *dev, mmio_mapfunc cb, mmio_mapfunc unmap); void sysbus_init_mmio_region(SysBusDevice *dev, MemoryRegion *memory); |