]> git.proxmox.com Git - qemu.git/blame - hw/vmware_vga.h
Merge remote-tracking branch 'riku/linux-user-for-upstream' into staging
[qemu.git] / hw / vmware_vga.h
CommitLineData
18e08a55
MT
1#ifndef QEMU_VMWARE_VGA_H
2#define QEMU_VMWARE_VGA_H
3
4#include "qemu-common.h"
5
6/* vmware_vga.c */
ad6d45fa 7static inline DeviceState *pci_vmsvga_init(PCIBus *bus)
5c81e4ca 8{
7ba7e49e
BS
9 PCIDevice *dev;
10
a369da5f
BS
11 dev = pci_create_simple(bus, -1, "vmware-svga");
12 return &dev->qdev;
5c81e4ca 13}
18e08a55
MT
14
15#endif