aboutsummaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorMark Cave-Ayland <mark.cave-ayland@ilande.co.uk>2017-12-21 07:32:57 +0000
committerMark Cave-Ayland <mark.cave-ayland@ilande.co.uk>2018-01-09 21:48:19 +0000
commit33c5eb02c4f51515896a5a13cb68f6f01ce8d0af (patch)
treec70f9ed9c5c313a623d9340dd30f4f061fe5382c /include
parentd9e4d6829c14d3e3d71906b0dc7e7ec9a77654bf (diff)
downloadqemu-33c5eb02c4f51515896a5a13cb68f6f01ce8d0af.zip
qemu-33c5eb02c4f51515896a5a13cb68f6f01ce8d0af.tar.gz
qemu-33c5eb02c4f51515896a5a13cb68f6f01ce8d0af.tar.bz2
apb: remove busA property from PBMPCIBridge state
Since the previous commit the only remaining use of the qdev busA property is to configure the PCI bridge in front of the onboard ebus devices differently to allow early OpenBIOS serial console access. Instead we can now manually update the PCI configuration for bridge A in pci_pbm_reset() and thus completely remove the busA property from the PBMPCIBridge state. Signed-off-by: Mark Cave-Ayland <mark.cave-ayland@ilande.co.uk> Reviewed-by: Artyom Tarasenko <atar4qemu@gmail.com>
Diffstat (limited to 'include')
-rw-r--r--include/hw/pci-host/apb.h3
1 files changed, 0 insertions, 3 deletions
diff --git a/include/hw/pci-host/apb.h b/include/hw/pci-host/apb.h
index f0074f7..dd49437 100644
--- a/include/hw/pci-host/apb.h
+++ b/include/hw/pci-host/apb.h
@@ -86,9 +86,6 @@ typedef struct APBState {
typedef struct PBMPCIBridge {
/*< private >*/
PCIBridge parent_obj;
-
- /* Is this busA with in-built devices (ebus)? */
- bool busA;
} PBMPCIBridge;
#define TYPE_PBM_PCI_BRIDGE "pbm-bridge"