From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from [140.186.70.92] (port=38613 helo=eggs.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1POI3Q-00048g-UJ for qemu-devel@nongnu.org; Thu, 02 Dec 2010 17:55:10 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1POI3P-0001go-Po for qemu-devel@nongnu.org; Thu, 02 Dec 2010 17:55:08 -0500 Received: from mx1.redhat.com ([209.132.183.28]:21431) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1POI3P-0001gg-H0 for qemu-devel@nongnu.org; Thu, 02 Dec 2010 17:55:07 -0500 Date: Fri, 3 Dec 2010 00:54:50 +0200 From: "Michael S. Tsirkin" Message-ID: <36afa8ddb9e4039d2f564a1848f26d3928261294.1291330353.git.mst@redhat.com> References: MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: Subject: [Qemu-devel] [PATCH 2/6] Makefile: make msix/msi depend on CONFIG_PCI List-Id: qemu-devel.nongnu.org List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: yamahata@valinux.co.jp, qemu-devel@nongnu.org Possible now that pci is not depending on these. Signed-off-by: Michael S. Tsirkin --- Makefile.objs | 3 ++- 1 files changed, 2 insertions(+), 1 deletions(-) diff --git a/Makefile.objs b/Makefile.objs index 04625eb..d1e63ce 100644 --- a/Makefile.objs +++ b/Makefile.objs @@ -168,7 +168,8 @@ hw-obj-$(CONFIG_VIRTIO) += virtio.o virtio-console.o hw-obj-y += fw_cfg.o # FIXME: Core PCI code and its direct dependencies are required by the # QMP query-pci command. -hw-obj-y += pci.o pci_bridge.o msix.o msi.o +hw-obj-y += pci.o pci_bridge.o +hw-obj-$(CONFIG_PCI) += msix.o msi.o hw-obj-$(CONFIG_PCI) += pci_host.o pcie_host.o hw-obj-$(CONFIG_PCI) += ioh3420.o xio3130_upstream.o xio3130_downstream.o hw-obj-y += watchdog.o -- 1.7.3.2.91.g446ac