summary refs log tree commit diff stats
path: root/hw/vmware_vga.h
diff options
context:
space:
mode:
Diffstat (limited to 'hw/vmware_vga.h')
-rw-r--r--hw/vmware_vga.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/hw/vmware_vga.h b/hw/vmware_vga.h
index 5132573a56..db11cbfac8 100644
--- a/hw/vmware_vga.h
+++ b/hw/vmware_vga.h
@@ -4,15 +4,15 @@
 #include "qemu-common.h"
 
 /* vmware_vga.c */
-static inline bool pci_vmsvga_init(PCIBus *bus)
+static inline DeviceState *pci_vmsvga_init(PCIBus *bus)
 {
     PCIDevice *dev;
 
     dev = pci_try_create(bus, -1, "vmware-svga");
     if (!dev || qdev_init(&dev->qdev) < 0) {
-        return false;
+        return NULL;
     } else {
-        return true;
+        return &dev->qdev;
     }
 }