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