diff options
author | Gerd Hoffmann <kraxel@redhat.com> | 2011-01-06 15:14:39 +0100 |
---|---|---|
committer | Michael S. Tsirkin <mst@redhat.com> | 2011-01-10 13:29:42 +0200 |
commit | be92bbf73dfd7d8a4786dc5f6c71590f4fbc5a32 (patch) | |
tree | 01ff0cbf520e541bc0260be1e52dac775fff2bb8 /hw/vmware_vga.c | |
parent | 0965f12da61cbfe62252d21a8e6fa309753760e8 (diff) | |
download | qemu-be92bbf73dfd7d8a4786dc5f6c71590f4fbc5a32.tar.gz qemu-be92bbf73dfd7d8a4786dc5f6c71590f4fbc5a32.tar.bz2 qemu-be92bbf73dfd7d8a4786dc5f6c71590f4fbc5a32.zip |
vga: tag as not hotplugable.
This patch tags all vga cards as not hotpluggable. The qemu
standard vga will never ever be hotpluggable. For cirrus + vmware
it might be possible to get that work some day. Todays we can't
handle that for a number of reasons though.
Signed-off-by: Gerd Hoffmann <kraxel@redhat.com>
Signed-off-by: Michael S. Tsirkin <mst@redhat.com>
Diffstat (limited to 'hw/vmware_vga.c')
-rw-r--r-- | hw/vmware_vga.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/hw/vmware_vga.c b/hw/vmware_vga.c index d9dd52fc60..6c59053308 100644 --- a/hw/vmware_vga.c +++ b/hw/vmware_vga.c @@ -1318,6 +1318,7 @@ static PCIDeviceInfo vmsvga_info = { .qdev.name = "vmware-svga", .qdev.size = sizeof(struct pci_vmsvga_state_s), .qdev.vmsd = &vmstate_vmware_vga, + .no_hotplug = 1, .init = pci_vmsvga_initfn, .romfile = "vgabios-vmware.bin", }; |