diff options
author | Avi Kivity <avi@redhat.com> | 2011-11-27 11:38:10 +0200 |
---|---|---|
committer | Avi Kivity <avi@redhat.com> | 2011-11-28 15:38:45 +0200 |
commit | 750ecd444ff7e4e27928d65164228b3e1ae5a95b (patch) | |
tree | 6334f0edc1744e8e2fb78965d6c855bcae165b9c /hw/empty_slot.c | |
parent | 3f7f1c8067157e06fd468f09d050803c11d4ae53 (diff) |
sysbus: rename sysbus_init_mmio_region() to sysbus_init_mmio()
Signed-off-by: Avi Kivity <avi@redhat.com>
Diffstat (limited to 'hw/empty_slot.c')
-rw-r--r-- | hw/empty_slot.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/hw/empty_slot.c b/hw/empty_slot.c index 626ba6948d..8b734f2c9f 100644 --- a/hw/empty_slot.c +++ b/hw/empty_slot.c @@ -72,7 +72,7 @@ static int empty_slot_init1(SysBusDevice *dev) memory_region_init_io(&s->iomem, &empty_slot_ops, s, "empty-slot", s->size); - sysbus_init_mmio_region(dev, &s->iomem); + sysbus_init_mmio(dev, &s->iomem); return 0; } |