From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([208.118.235.92]:47592) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1UNpll-0002H0-KI for qemu-devel@nongnu.org; Thu, 04 Apr 2013 15:24:22 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1UNplk-00025s-Cn for qemu-devel@nongnu.org; Thu, 04 Apr 2013 15:24:21 -0400 Received: from mail-we0-x22a.google.com ([2a00:1450:400c:c03::22a]:60442) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1UNplk-00024T-5v for qemu-devel@nongnu.org; Thu, 04 Apr 2013 15:24:20 -0400 Received: by mail-we0-f170.google.com with SMTP id z2so2283619wey.15 for ; Thu, 04 Apr 2013 12:24:19 -0700 (PDT) Sender: Paolo Bonzini From: Paolo Bonzini Date: Thu, 4 Apr 2013 21:23:08 +0200 Message-Id: <1365103395-11547-29-git-send-email-pbonzini@redhat.com> In-Reply-To: <1365103395-11547-1-git-send-email-pbonzini@redhat.com> References: <1365103395-11547-1-git-send-email-pbonzini@redhat.com> Subject: [Qemu-devel] [PATCH 28/35] hw: move GPIO interfaces to hw/gpio/, configure with default-configs/ List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Signed-off-by: Paolo Bonzini --- hw/arm/Makefile.objs | 3 +-- hw/gpio/Makefile.objs | 3 +++ hw/{ => gpio}/omap_gpio.c | 0 hw/{ => gpio}/zaurus.c | 0 4 files changed, 4 insertions(+), 2 deletions(-) rename hw/{ => gpio}/omap_gpio.c (100%) rename hw/{ => gpio}/zaurus.c (100%) diff --git a/hw/arm/Makefile.objs b/hw/arm/Makefile.objs index 915073b..ec4d0cb 100644 --- a/hw/arm/Makefile.objs +++ b/hw/arm/Makefile.objs @@ -4,8 +4,7 @@ obj-y += arm_sysctl.o arm11mpcore.o a9mpcore.o obj-y += exynos4210_pmu.o obj-y += a15mpcore.o obj-y += pxa2xx_pcmcia.o -obj-y += zaurus.o -obj-y += omap_clk.o omap_gpio.o +obj-y += omap_clk.o obj-y += omap_gpmc.o omap_sdrc.o omap_tap.o omap_l4.o obj-y += cbus.o obj-y += mst_fpga.o diff --git a/hw/gpio/Makefile.objs b/hw/gpio/Makefile.objs index f8d8ee8..2c8b51f 100644 --- a/hw/gpio/Makefile.objs +++ b/hw/gpio/Makefile.objs @@ -1,3 +1,6 @@ common-obj-$(CONFIG_MAX7310) += max7310.o common-obj-$(CONFIG_PL061) += pl061.o common-obj-$(CONFIG_PUV3) += puv3_gpio.o +common-obj-$(CONFIG_ZAURUS) += zaurus.o + +obj-$(CONFIG_OMAP) += omap_gpio.o diff --git a/hw/omap_gpio.c b/hw/gpio/omap_gpio.c similarity index 100% rename from hw/omap_gpio.c rename to hw/gpio/omap_gpio.c diff --git a/hw/zaurus.c b/hw/gpio/zaurus.c similarity index 100% rename from hw/zaurus.c rename to hw/gpio/zaurus.c -- 1.8.1.4