From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:42035) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1a7SeT-0007fo-IX for qemu-devel@nongnu.org; Fri, 11 Dec 2015 13:42:46 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1a7SeQ-0001CK-Cv for qemu-devel@nongnu.org; Fri, 11 Dec 2015 13:42:45 -0500 Received: from mx1.redhat.com ([209.132.183.28]:48957) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1a7SeQ-0001CD-7y for qemu-devel@nongnu.org; Fri, 11 Dec 2015 13:42:42 -0500 Received: from int-mx14.intmail.prod.int.phx2.redhat.com (int-mx14.intmail.prod.int.phx2.redhat.com [10.5.11.27]) by mx1.redhat.com (Postfix) with ESMTPS id 3D3ABC105B2E for ; Fri, 11 Dec 2015 18:42:41 +0000 (UTC) From: Eduardo Habkost Date: Fri, 11 Dec 2015 16:42:20 -0200 Message-Id: <1449859353-1574-2-git-send-email-ehabkost@redhat.com> In-Reply-To: <1449859353-1574-1-git-send-email-ehabkost@redhat.com> References: <1449859353-1574-1-git-send-email-ehabkost@redhat.com> Subject: [Qemu-devel] [PATCH v2 01/14] q35: Remove MCHPCIState.guest_info field List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: Igor Mammedov , Marcel Apfelbaum , "Michael S. Tsirkin" The field is not used for anything. Signed-off-by: Eduardo Habkost --- hw/i386/pc_q35.c | 1 - include/hw/pci-host/q35.h | 1 - 2 files changed, 2 deletions(-) diff --git a/hw/i386/pc_q35.c b/hw/i386/pc_q35.c index 9da751b..43ee8bb 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 dbe6dc0..c5c073d 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; -- 2.1.0