aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarcin Juszkiewicz <marcin.juszkiewicz@linaro.org>2023-05-05 14:09:36 +0200
committerPeter Maydell <peter.maydell@linaro.org>2023-05-18 11:13:25 +0100
commit9162ac6b9ee5f9d91d8e76386b3ef389fd360a0c (patch)
tree5b0624bdfb7e710932f26ae06b49103bb9971dec
parent70a670cadba8e3669af138fbb8c0ef377c5b09ff (diff)
downloadqemu-9162ac6b9ee5f9d91d8e76386b3ef389fd360a0c.zip
qemu-9162ac6b9ee5f9d91d8e76386b3ef389fd360a0c.tar.gz
qemu-9162ac6b9ee5f9d91d8e76386b3ef389fd360a0c.tar.bz2
sbsa-ref: use Bochs graphics card instead of VGA
Bochs card is normal PCI Express card so it fits better in system with PCI Express bus. VGA is simple legacy PCI card. Signed-off-by: Marcin Juszkiewicz <marcin.juszkiewicz@linaro.org> Reviewed-by: Leif Lindholm <quic_llindhol@quicinc.com> Message-id: 20230505120936.1097060-1-marcin.juszkiewicz@linaro.org Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
-rw-r--r--hw/arm/sbsa-ref.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/hw/arm/sbsa-ref.c b/hw/arm/sbsa-ref.c
index a1562f9..792371f 100644
--- a/hw/arm/sbsa-ref.c
+++ b/hw/arm/sbsa-ref.c
@@ -648,7 +648,7 @@ static void create_pcie(SBSAMachineState *sms)
}
}
- pci_create_simple(pci->bus, -1, "VGA");
+ pci_create_simple(pci->bus, -1, "bochs-display");
create_smmu(sms, pci->bus);
}