From: Eduardo Habkost Date: Fri, 11 Dec 2015 18:42:20 +0000 (-0200) Subject: q35: Remove MCHPCIState.guest_info field X-Git-Tag: v2.6.0-rc0~248^2~44 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=34be1e7c92a9e8942a23e7544356af634d233d83;p=thirdparty%2Fqemu.git q35: Remove MCHPCIState.guest_info field The field is not used for anything. Signed-off-by: Eduardo Habkost Reviewed-by: Michael S. Tsirkin Signed-off-by: Michael S. Tsirkin Reviewed-by: Marcel Apfelbaum --- diff --git a/hw/i386/pc_q35.c b/hw/i386/pc_q35.c index b87e7ec19c2..342e9cfca42 100644 --- a/hw/i386/pc_q35.c +++ b/hw/i386/pc_q35.c @@ -176,7 +176,6 @@ static void pc_q35_init(MachineState *machine) q35_host->mch.address_space_io = get_system_io(); q35_host->mch.below_4g_mem_size = pcms->below_4g_mem_size; q35_host->mch.above_4g_mem_size = pcms->above_4g_mem_size; - q35_host->mch.guest_info = guest_info; /* pci */ qdev_init_nofail(DEVICE(q35_host)); phb = PCI_HOST_BRIDGE(q35_host); diff --git a/include/hw/pci-host/q35.h b/include/hw/pci-host/q35.h index dbe6dc05b58..c5c073ddea4 100644 --- a/include/hw/pci-host/q35.h +++ b/include/hw/pci-host/q35.h @@ -59,7 +59,6 @@ typedef struct MCHPCIState { ram_addr_t below_4g_mem_size; ram_addr_t above_4g_mem_size; uint64_t pci_hole64_size; - PcGuestInfo *guest_info; uint32_t short_root_bus; IntelIOMMUState *iommu; } MCHPCIState;