2009-11-11 15:59:56 +03:00
|
|
|
#ifndef QEMU_VMWARE_VGA_H
|
|
|
|
#define QEMU_VMWARE_VGA_H
|
|
|
|
|
|
|
|
#include "qemu-common.h"
|
|
|
|
|
|
|
|
/* vmware_vga.c */
|
2011-12-13 00:29:41 +04:00
|
|
|
static inline DeviceState *pci_vmsvga_init(PCIBus *bus)
|
2011-02-05 17:34:19 +03:00
|
|
|
{
|
2011-02-05 17:34:37 +03:00
|
|
|
PCIDevice *dev;
|
|
|
|
|
2011-09-27 23:15:42 +04:00
|
|
|
dev = pci_create_simple(bus, -1, "vmware-svga");
|
|
|
|
return &dev->qdev;
|
2011-02-05 17:34:19 +03:00
|
|
|
}
|
2009-11-11 15:59:56 +03:00
|
|
|
|
|
|
|
#endif
|