mirror of https://github.com/xemu-project/xemu.git
ppc/pSeries: use the new pci_vga_init() function
Keep the case to prevent some vga card to be selected. Cc: Alexander Graf <agraf@suse.de> Cc: David Gibson <david@gibson.dropbear.id.au> Signed-off-by: Aurelien Jarno <aurelien@aurel32.net>
This commit is contained in:
parent
95fa01fab0
commit
1ddcae82a2
|
@ -46,7 +46,6 @@
|
|||
#include "kvm.h"
|
||||
#include "kvm_ppc.h"
|
||||
#include "pci.h"
|
||||
#include "vga-pci.h"
|
||||
|
||||
#include "exec-memory.h"
|
||||
#include "hw/usb.h"
|
||||
|
@ -589,11 +588,9 @@ static void spapr_cpu_reset(void *opaque)
|
|||
static int spapr_vga_init(PCIBus *pci_bus)
|
||||
{
|
||||
switch (vga_interface_type) {
|
||||
case VGA_STD:
|
||||
pci_std_vga_init(pci_bus);
|
||||
return 1;
|
||||
case VGA_NONE:
|
||||
return 0;
|
||||
case VGA_STD:
|
||||
return pci_vga_init(pci_bus) != NULL;
|
||||
default:
|
||||
fprintf(stderr, "This vga model is not supported,"
|
||||
"currently it only supports -vga std\n");
|
||||
|
|
Loading…
Reference in New Issue