summaryrefslogtreecommitdiffstats
path: root/hw/lm32_timer.c
diff options
context:
space:
mode:
authorAvi Kivity2011-11-27 10:38:10 +0100
committerAvi Kivity2011-11-28 14:38:45 +0100
commit750ecd444ff7e4e27928d65164228b3e1ae5a95b (patch)
tree6334f0edc1744e8e2fb78965d6c855bcae165b9c /hw/lm32_timer.c
parentsysbus: remove sysbus_init_mmio() (diff)
downloadqemu-750ecd444ff7e4e27928d65164228b3e1ae5a95b.tar.gz
qemu-750ecd444ff7e4e27928d65164228b3e1ae5a95b.tar.xz
qemu-750ecd444ff7e4e27928d65164228b3e1ae5a95b.zip
sysbus: rename sysbus_init_mmio_region() to sysbus_init_mmio()
Signed-off-by: Avi Kivity <avi@redhat.com>
Diffstat (limited to 'hw/lm32_timer.c')
-rw-r--r--hw/lm32_timer.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/hw/lm32_timer.c b/hw/lm32_timer.c
index a3a21edcde..445847f1ce 100644
--- a/hw/lm32_timer.c
+++ b/hw/lm32_timer.c
@@ -180,7 +180,7 @@ static int lm32_timer_init(SysBusDevice *dev)
ptimer_set_freq(s->ptimer, s->freq_hz);
memory_region_init_io(&s->iomem, &timer_ops, s, "timer", R_MAX * 4);
- sysbus_init_mmio_region(dev, &s->iomem);
+ sysbus_init_mmio(dev, &s->iomem);
return 0;
}