From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([208.118.235.92]:48995) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1UaEmL-00009G-9Z for qemu-devel@nongnu.org; Wed, 08 May 2013 20:32:21 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1UaEmA-0006Av-GM for qemu-devel@nongnu.org; Wed, 08 May 2013 20:32:12 -0400 Received: from ozlabs.org ([203.10.76.45]:53716) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1UaEmA-0006Ah-5m for qemu-devel@nongnu.org; Wed, 08 May 2013 20:32:02 -0400 From: David Gibson Date: Thu, 9 May 2013 10:31:11 +1000 Message-Id: <1368059472-25071-8-git-send-email-david@gibson.dropbear.id.au> In-Reply-To: <1368059472-25071-1-git-send-email-david@gibson.dropbear.id.au> References: <1368059472-25071-1-git-send-email-david@gibson.dropbear.id.au> Subject: [Qemu-devel] [PATCH 7/8] pci: Remove domain from PCIHostBus List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: aliguori@us.ibm.com, mst@redhat.com Cc: qemu-devel@nongnu.org, David Gibson There are now no users of the domain field of PCIHostBus, so remove it from the structure, and as a parameter from the pci_host_bus_register() function which sets it. Signed-off-by: David Gibson --- hw/pci/pci.c | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/hw/pci/pci.c b/hw/pci/pci.c index b25a1a1..716f856 100644 --- a/hw/pci/pci.c +++ b/hw/pci/pci.c @@ -91,7 +91,6 @@ static uint16_t pci_default_sub_vendor_id = PCI_SUBVENDOR_ID_REDHAT_QUMRANET; static uint16_t pci_default_sub_device_id = PCI_SUBDEVICE_ID_QEMU; struct PCIHostBus { - int domain; struct PCIBus *bus; QLIST_ENTRY(PCIHostBus) next; }; @@ -239,7 +238,7 @@ static int pcibus_reset(BusState *qbus) return 1; } -static void pci_host_bus_register(int domain, PCIBus *bus) +static void pci_host_bus_register(PCIBus *bus) { struct PCIHostBus *host; @@ -249,7 +248,6 @@ static void pci_host_bus_register(int domain, PCIBus *bus) } host = g_malloc0(sizeof(*host)); - host->domain = domain; host->bus = bus; QLIST_INSERT_HEAD(&host_buses, host, next); } @@ -300,7 +298,7 @@ static void pci_bus_init(PCIBus *bus, DeviceState *parent, /* host bridge */ QLIST_INIT(&bus->child); - pci_host_bus_register(0, bus); /* for now only pci domain 0 is supported */ + pci_host_bus_register(bus); vmstate_register(NULL, -1, &vmstate_pcibus, bus); } -- 1.7.10.4