diff options
author | Paolo Bonzini <pbonzini@redhat.com> | 2013-06-06 21:25:08 -0400 |
---|---|---|
committer | Paolo Bonzini <pbonzini@redhat.com> | 2013-07-04 17:42:48 +0200 |
commit | 853dca12055ea74994629d06798165d811c5e1e2 (patch) | |
tree | 7393d45ca718837aa7c6e97fe9e894fe4e78b1e8 /hw/timer/slavio_timer.c | |
parent | 2977673992b7d363d0f402ee7c4217795fe13809 (diff) | |
download | qemu-853dca12055ea74994629d06798165d811c5e1e2.zip qemu-853dca12055ea74994629d06798165d811c5e1e2.tar.gz qemu-853dca12055ea74994629d06798165d811c5e1e2.tar.bz2 |
hw/t*: pass owner to memory_region_init* functions
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
Diffstat (limited to 'hw/timer/slavio_timer.c')
-rw-r--r-- | hw/timer/slavio_timer.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/hw/timer/slavio_timer.c b/hw/timer/slavio_timer.c index cad81a3..7f844d7 100644 --- a/hw/timer/slavio_timer.c +++ b/hw/timer/slavio_timer.c @@ -394,7 +394,7 @@ static int slavio_timer_init1(SysBusDevice *dev) size = i == 0 ? SYS_TIMER_SIZE : CPU_TIMER_SIZE; snprintf(timer_name, sizeof(timer_name), "timer-%i", i); - memory_region_init_io(&tc->iomem, NULL, &slavio_timer_mem_ops, tc, + memory_region_init_io(&tc->iomem, OBJECT(s), &slavio_timer_mem_ops, tc, timer_name, size); sysbus_init_mmio(dev, &tc->iomem); |