diff options
author | Peter Maydell | 2013-03-01 17:57:41 +0100 |
---|---|---|
committer | Stefan Hajnoczi | 2013-03-08 13:15:27 +0100 |
commit | d37e12a07c06b13610b7fabb6b8e009d7a759bc8 (patch) | |
tree | e09b52e010d46dba19ed5046adba27507db985fb /hw/pci/pci_host.h | |
parent | rng-random: Use qemu_open / qemu_close (diff) | |
download | qemu-d37e12a07c06b13610b7fabb6b8e009d7a759bc8.tar.gz qemu-d37e12a07c06b13610b7fabb6b8e009d7a759bc8.tar.xz qemu-d37e12a07c06b13610b7fabb6b8e009d7a759bc8.zip |
pci_host: Drop write-only address_space field
The address_space field of PCIHostState was only ever written, never used.
Drop it completely.
Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
Reviewed-by: Andreas Färber <afaerber@suse.de>
Signed-off-by: Stefan Hajnoczi <stefanha@redhat.com>
Diffstat (limited to 'hw/pci/pci_host.h')
-rw-r--r-- | hw/pci/pci_host.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/hw/pci/pci_host.h b/hw/pci/pci_host.h index 1845d4dfd5..236cd0f75c 100644 --- a/hw/pci/pci_host.h +++ b/hw/pci/pci_host.h @@ -40,7 +40,6 @@ struct PCIHostState { MemoryRegion conf_mem; MemoryRegion data_mem; MemoryRegion mmcfg; - MemoryRegion *address_space; uint32_t config_reg; PCIBus *bus; }; |