From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:44157) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1UjmGw-0005Rn-MN for qemu-devel@nongnu.org; Tue, 04 Jun 2013 04:07:17 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1UjmGt-0007Gv-GR for qemu-devel@nongnu.org; Tue, 04 Jun 2013 04:07:14 -0400 Received: from mx1.redhat.com ([209.132.183.28]:49218) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1UjmGt-0007Gh-75 for qemu-devel@nongnu.org; Tue, 04 Jun 2013 04:07:11 -0400 Received: from int-mx12.intmail.prod.int.phx2.redhat.com (int-mx12.intmail.prod.int.phx2.redhat.com [10.5.11.25]) by mx1.redhat.com (8.14.4/8.14.4) with ESMTP id r5487AaW008116 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=OK) for ; Tue, 4 Jun 2013 04:07:10 -0400 Received: from redhat.com (vpn-203-14.tlv.redhat.com [10.35.203.14]) by int-mx12.intmail.prod.int.phx2.redhat.com (8.14.4/8.14.4) with ESMTP id r54878mj030052 for ; Tue, 4 Jun 2013 04:07:09 -0400 Date: Tue, 4 Jun 2013 11:07:43 +0300 From: "Michael S. Tsirkin" Message-ID: <1370202787-3712-3-git-send-email-mst@redhat.com> References: <1370202787-3712-1-git-send-email-mst@redhat.com> MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Disposition: inline In-Reply-To: <1370202787-3712-1-git-send-email-mst@redhat.com> Content-Transfer-Encoding: quoted-printable Subject: [Qemu-devel] [PULL 2/9] dec.c - move to pci-bridge List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Looks like dec.c is in pci-host by mistake. Moving it over to pci-bridge. Acked-by: Andreas F=E4rber Signed-off-by: Michael S. Tsirkin --- hw/pci-bridge/Makefile.objs | 2 ++ hw/{pci-host =3D> pci-bridge}/dec.c | 0 hw/{pci-host =3D> pci-bridge}/dec.h | 0 hw/pci-host/Makefile.objs | 1 - 4 files changed, 2 insertions(+), 1 deletion(-) rename hw/{pci-host =3D> pci-bridge}/dec.c (100%) rename hw/{pci-host =3D> pci-bridge}/dec.h (100%) diff --git a/hw/pci-bridge/Makefile.objs b/hw/pci-bridge/Makefile.objs index 5dd92d2..968b369 100644 --- a/hw/pci-bridge/Makefile.objs +++ b/hw/pci-bridge/Makefile.objs @@ -1,3 +1,5 @@ common-obj-y +=3D pci_bridge_dev.o common-obj-y +=3D ioh3420.o xio3130_upstream.o xio3130_downstream.o common-obj-y +=3D i82801b11.o +# NewWorld PowerMac +common-obj-$(CONFIG_DEC_PCI) +=3D dec.o diff --git a/hw/pci-host/dec.c b/hw/pci-bridge/dec.c similarity index 100% rename from hw/pci-host/dec.c rename to hw/pci-bridge/dec.c diff --git a/hw/pci-host/dec.h b/hw/pci-bridge/dec.h similarity index 100% rename from hw/pci-host/dec.h rename to hw/pci-bridge/dec.h diff --git a/hw/pci-host/Makefile.objs b/hw/pci-host/Makefile.objs index 909e702..bb65f9c 100644 --- a/hw/pci-host/Makefile.objs +++ b/hw/pci-host/Makefile.objs @@ -5,7 +5,6 @@ common-obj-$(CONFIG_PREP_PCI) +=3D prep.o common-obj-$(CONFIG_GRACKLE_PCI) +=3D grackle.o # NewWorld PowerMac common-obj-$(CONFIG_UNIN_PCI) +=3D uninorth.o -common-obj-$(CONFIG_DEC_PCI) +=3D dec.o # PowerPC E500 boards common-obj-$(CONFIG_PPCE500_PCI) +=3D ppce500.o =20 --=20 MST