aboutsummaryrefslogtreecommitdiff
path: root/hw/mst_fpga.c
diff options
context:
space:
mode:
authorAvi Kivity <avi@redhat.com>2011-11-27 11:38:10 +0200
committerAvi Kivity <avi@redhat.com>2011-11-28 15:38:45 +0200
commit750ecd444ff7e4e27928d65164228b3e1ae5a95b (patch)
tree6334f0edc1744e8e2fb78965d6c855bcae165b9c /hw/mst_fpga.c
parent3f7f1c8067157e06fd468f09d050803c11d4ae53 (diff)
downloadqemu-750ecd444ff7e4e27928d65164228b3e1ae5a95b.zip
qemu-750ecd444ff7e4e27928d65164228b3e1ae5a95b.tar.gz
qemu-750ecd444ff7e4e27928d65164228b3e1ae5a95b.tar.bz2
sysbus: rename sysbus_init_mmio_region() to sysbus_init_mmio()
Signed-off-by: Avi Kivity <avi@redhat.com>
Diffstat (limited to 'hw/mst_fpga.c')
-rw-r--r--hw/mst_fpga.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/hw/mst_fpga.c b/hw/mst_fpga.c
index cf9957b..9324702 100644
--- a/hw/mst_fpga.c
+++ b/hw/mst_fpga.c
@@ -207,7 +207,7 @@ static int mst_fpga_init(SysBusDevice *dev)
memory_region_init_io(&s->iomem, &mst_fpga_ops, s,
"fpga", 0x00100000);
- sysbus_init_mmio_region(dev, &s->iomem);
+ sysbus_init_mmio(dev, &s->iomem);
return 0;
}