diff options
author | Blue Swirl <blauwirbel@gmail.com> | 2011-02-05 14:34:19 +0000 |
---|---|---|
committer | Blue Swirl <blauwirbel@gmail.com> | 2011-02-12 08:27:53 +0000 |
commit | 5c81e4ca9e5c11239a9db12f0f57c6c1e24b6760 (patch) | |
tree | 78ce65cba6a6fd999afa778190a37ebb984f348f /hw/vmware_vga.h | |
parent | 55619bb667a681d248009f3b10094b6cf121671f (diff) |
vmware_vga: refactor device creation
Turn vmsvga_init into an inline function.
Signed-off-by: Blue Swirl <blauwirbel@gmail.com>
Diffstat (limited to 'hw/vmware_vga.h')
-rw-r--r-- | hw/vmware_vga.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/hw/vmware_vga.h b/hw/vmware_vga.h index 2e0813c81b..e7bcb22146 100644 --- a/hw/vmware_vga.h +++ b/hw/vmware_vga.h @@ -4,6 +4,9 @@ #include "qemu-common.h" /* vmware_vga.c */ -void pci_vmsvga_init(PCIBus *bus); +static inline void pci_vmsvga_init(PCIBus *bus) +{ + pci_create_simple(bus, -1, "vmware-svga"); +} #endif |