summaryrefslogtreecommitdiffstats
path: root/hw/sysbus.h
diff options
context:
space:
mode:
authorPeter Maydell2013-03-15 15:34:23 +0100
committerAnthony Liguori2013-04-01 16:08:33 +0200
commite63d28d7dbfcec81214aecc9ff0aaee46e87aa44 (patch)
treed19efe9c31b524a5449114eda584def29a55b01f /hw/sysbus.h
parenthw/milkymist-softusb: set buffer in softusb_read_{dmem, pmem} error path (diff)
downloadqemu-e63d28d7dbfcec81214aecc9ff0aaee46e87aa44.tar.gz
qemu-e63d28d7dbfcec81214aecc9ff0aaee46e87aa44.tar.xz
qemu-e63d28d7dbfcec81214aecc9ff0aaee46e87aa44.zip
sysbus: Remove sysbus_add_memory and sysbus_del_memory
Remove the sysbus_add_memory and sysbus_del_memory functions. These are trivial wrappers for mapping a memory region into the system memory space, and have no users now. Sysbus devices should never map their own memory regions anyway; the correct API for mapping an mmio region is for the creator of the device to use sysbus_mmio_map. Signed-off-by: Peter Maydell <peter.maydell@linaro.org> Reviewed-by: Andreas Färber <afaerber@suse.de> Message-id: 1363358063-23973-6-git-send-email-peter.maydell@linaro.org Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
Diffstat (limited to 'hw/sysbus.h')
-rw-r--r--hw/sysbus.h5
1 files changed, 0 insertions, 5 deletions
diff --git a/hw/sysbus.h b/hw/sysbus.h
index 5d90a52af5..7c2e3163fb 100644
--- a/hw/sysbus.h
+++ b/hw/sysbus.h
@@ -58,11 +58,6 @@ void sysbus_connect_irq(SysBusDevice *dev, int n, qemu_irq irq);
void sysbus_mmio_map(SysBusDevice *dev, int n, hwaddr addr);
void sysbus_mmio_map_overlap(SysBusDevice *dev, int n, hwaddr addr,
unsigned priority);
-void sysbus_add_memory(SysBusDevice *dev, hwaddr addr,
- MemoryRegion *mem);
-void sysbus_add_memory_overlap(SysBusDevice *dev, hwaddr addr,
- MemoryRegion *mem, unsigned priority);
-void sysbus_del_memory(SysBusDevice *dev, MemoryRegion *mem);
void sysbus_add_io(SysBusDevice *dev, hwaddr addr,
MemoryRegion *mem);
void sysbus_del_io(SysBusDevice *dev, MemoryRegion *mem);