From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:32809) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1eCplx-0003RB-O4 for qemu-devel@nongnu.org; Thu, 09 Nov 2017 11:33:46 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1eCplu-0001Io-L9 for qemu-devel@nongnu.org; Thu, 09 Nov 2017 11:33:45 -0500 Received: from mx1.redhat.com ([209.132.183.28]:4532) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1eCplu-0001IS-FI for qemu-devel@nongnu.org; Thu, 09 Nov 2017 11:33:42 -0500 References: <20171109154645.70920-1-marcel@redhat.com> From: Thomas Huth Message-ID: <5f84dde8-6fe2-4c15-4ffa-c77729172de2@redhat.com> Date: Thu, 9 Nov 2017 17:33:31 +0100 MIME-Version: 1.0 In-Reply-To: <20171109154645.70920-1-marcel@redhat.com> Content-Type: text/plain; charset=utf-8 Content-Language: en-US Content-Transfer-Encoding: 7bit Subject: Re: [Qemu-devel] [PATCH V5] hw/pcie-pci-bridge: restrict to X86 and ARM List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Marcel Apfelbaum , qemu-devel@nongnu.org Cc: mst@redhat.com, zuban32s@gmail.com, cohuck@redhat.com On 09.11.2017 16:46, Marcel Apfelbaum wrote: > The PCIE-PCI bridge is specific to "pure" PCIe systems > (on QEMU we have X86 and ARM), it does not make sense to > have it in other archs. > > Reported-by: Thomas Huth > Signed-off-by: Marcel Apfelbaum > --- > > V4 -> V5 > - Since all other tries failed, conditioned the > device on the PCIe Root Port. > > V3 -> V4: > - Move the config line to pci.mak (Thomas) > > V2 -> V3: > - Another tweak in subject s/if/it (Cornelia) > > V1 -> V2: > Addressed Thomas and Cornelia comments: > - Conditioned the pcie-pci-bridge compilation on > the PCIe Root CONFIG_PCIE_PORT > - Tweaked subject PCI -> PCIe > > Thanks, > Marcel > > > hw/pci-bridge/Makefile.objs | 4 ++-- > 1 file changed, 2 insertions(+), 2 deletions(-) > > diff --git a/hw/pci-bridge/Makefile.objs b/hw/pci-bridge/Makefile.objs > index 666db37da2..1b05023662 100644 > --- a/hw/pci-bridge/Makefile.objs > +++ b/hw/pci-bridge/Makefile.objs > @@ -1,5 +1,5 @@ > -common-obj-y += pci_bridge_dev.o pcie_pci_bridge.o > -common-obj-$(CONFIG_PCIE_PORT) += pcie_root_port.o gen_pcie_root_port.o > +common-obj-y += pci_bridge_dev.o > +common-obj-$(CONFIG_PCIE_PORT) += pcie_root_port.o gen_pcie_root_port.o pcie_pci_bridge.o > common-obj-$(CONFIG_PXB) += pci_expander_bridge.o > common-obj-$(CONFIG_XIO3130) += xio3130_upstream.o xio3130_downstream.o > common-obj-$(CONFIG_IOH3420) += ioh3420.o Reviewed-by: Thomas Huth