From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([208.118.235.92]:46673) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1UHe9h-0003Ig-6e for qemu-devel@nongnu.org; Mon, 18 Mar 2013 13:47:30 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1UHe9f-0006b4-N7 for qemu-devel@nongnu.org; Mon, 18 Mar 2013 13:47:29 -0400 Received: from mail-bk0-x235.google.com ([2a00:1450:4008:c01::235]:42329) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1UHdyw-00029K-Vw for qemu-devel@nongnu.org; Mon, 18 Mar 2013 13:36:23 -0400 Received: by mail-bk0-f53.google.com with SMTP id j10so2617963bkw.40 for ; Mon, 18 Mar 2013 10:36:22 -0700 (PDT) Sender: Paolo Bonzini From: Paolo Bonzini Date: Mon, 18 Mar 2013 18:35:20 +0100 Message-Id: <1363628125-5310-31-git-send-email-pbonzini@redhat.com> In-Reply-To: <1363628125-5310-1-git-send-email-pbonzini@redhat.com> References: <1363628125-5310-1-git-send-email-pbonzini@redhat.com> Subject: [Qemu-devel] [PATCH 30/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 da51491..6f70934 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..28e4939 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 + +obj-$(CONFIG_OMAP) += omap_gpio.o +obj-$(CONFIG_ZAURUS) += zaurus.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