summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorStefano Stabellini <stefano.stabellini@eu.citrix.com>2012-08-01 13:44:11 +0000
committerStefano Stabellini <stefano.stabellini@eu.citrix.com>2012-08-01 13:44:11 +0000
commit47fb65ce3e15762064dd6d93834e3ce923ef6f89 (patch)
tree960df2331334a04edb7b9b44b24177da2428ac9e
parentf6ccf1f45385c33ec0ea0463cdb0b1fba3bd7178 (diff)
downloadfocaccia-qemu-47fb65ce3e15762064dd6d93834e3ce923ef6f89.tar.gz
focaccia-qemu-47fb65ce3e15762064dd6d93834e3ce923ef6f89.zip
fix Xen compilation
xen_pt_unregister_device is used as PCIUnregisterFunc, so it should
match the type.

Signed-off-by: Stefano Stabellini <stefano.stabellini@eu.citrix.com>
Tested-by: Andreas Färber <afaerber@suse.de>
-rw-r--r--hw/xen_pt.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/hw/xen_pt.c b/hw/xen_pt.c
index fdf68aa564..307119a12f 100644
--- a/hw/xen_pt.c
+++ b/hw/xen_pt.c
@@ -764,7 +764,7 @@ out:
     return 0;
 }
 
-static int xen_pt_unregister_device(PCIDevice *d)
+static void xen_pt_unregister_device(PCIDevice *d)
 {
     XenPCIPassthroughState *s = DO_UPCAST(XenPCIPassthroughState, dev, d);
     uint8_t machine_irq = s->machine_irq;
@@ -814,8 +814,6 @@ static int xen_pt_unregister_device(PCIDevice *d)
     memory_listener_unregister(&s->memory_listener);
 
     xen_host_pci_device_put(&s->real_device);
-
-    return 0;
 }
 
 static Property xen_pci_passthrough_properties[] = {