repo.or.cz
/
qemu-kvm.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Merge remote-tracking branch 'kwolf/for-anthony' into staging
[qemu-kvm.git]
/
hw
/
vmware_vga.h
blob
000fbddc0f29459bb0db5da5cd56624be07e48d6
1
#ifndef QEMU_VMWARE_VGA_H
2
#define QEMU_VMWARE_VGA_H
3
4
#include
"qemu-common.h"
5
6
/* vmware_vga.c */
7
static
inline
DeviceState
*
pci_vmsvga_init
(
PCIBus
*
bus
)
8
{
9
PCIDevice
*
dev
;
10
11
dev
=
pci_create_simple
(
bus
, -
1
,
"vmware-svga"
);
12
return
&
dev
->
qdev
;
13
}
14
15
#endif