qemu-e2k/hw/vmware_vga.h
Blue Swirl 5c81e4ca9e vmware_vga: refactor device creation
Turn vmsvga_init into an inline function.

Signed-off-by: Blue Swirl <blauwirbel@gmail.com>
2011-02-12 08:27:53 +00:00

13 lines
205 B
C

#ifndef QEMU_VMWARE_VGA_H
#define QEMU_VMWARE_VGA_H
#include "qemu-common.h"
/* vmware_vga.c */
static inline void pci_vmsvga_init(PCIBus *bus)
{
pci_create_simple(bus, -1, "vmware-svga");
}
#endif