diff options
Diffstat (limited to 'hw/lm32_timer.c')
-rw-r--r-- | hw/lm32_timer.c | 2 |
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; } |