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 | 22fc860b0a0b689eacf4a01f5aa2ccbf36043a12 (patch) | |
tree | c630e8bc6fd31e50630843a7ee8bdf4265d5eef0 /hw/xen/xen_apic.c | |
parent | 853dca12055ea74994629d06798165d811c5e1e2 (diff) |
hw/[u-x]*: pass owner to memory_region_init* functions
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
Diffstat (limited to 'hw/xen/xen_apic.c')
-rw-r--r-- | hw/xen/xen_apic.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/hw/xen/xen_apic.c b/hw/xen/xen_apic.c index 3526ffe621..9f91e0f0c9 100644 --- a/hw/xen/xen_apic.c +++ b/hw/xen/xen_apic.c @@ -38,8 +38,8 @@ static const MemoryRegionOps xen_apic_io_ops = { static void xen_apic_init(APICCommonState *s) { - memory_region_init_io(&s->io_memory, NULL, &xen_apic_io_ops, s, "xen-apic-msi", - APIC_SPACE_SIZE); + memory_region_init_io(&s->io_memory, OBJECT(s), &xen_apic_io_ops, s, + "xen-apic-msi", APIC_SPACE_SIZE); #if defined(CONFIG_XEN_CTRL_INTERFACE_VERSION) \ && CONFIG_XEN_CTRL_INTERFACE_VERSION >= 420 |