From mboxrd@z Thu Jan 1 00:00:00 1970 From: Jean-Christophe PLAGNIOL-VILLARD Date: Thu, 11 Oct 2007 10:32:06 +0200 Subject: [U-Boot-Users] [PATCH] drivers/ata: move ata drivers to drivers/ata In-Reply-To: <1192091549-25875-1-git-send-email-plagnioj@jcrosoft.com> References: [PATCH] Dirvers Reorganization Patch for Grant Likely Kconfig Patch <1192091549-25875-1-git-send-email-plagnioj@jcrosoft.com> Message-ID: <1192091549-25875-2-git-send-email-plagnioj@jcrosoft.com> List-Id: MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit To: u-boot@lists.denx.de Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD --- drivers/Makefile | 1 - drivers/ata/Makefile | 2 +- drivers/{ => ata}/ata_piix.c | 0 3 files changed, 1 insertions(+), 2 deletions(-) rename drivers/{ => ata}/ata_piix.c (100%) diff --git a/drivers/Makefile b/drivers/Makefile index b9686bc..0e6f180 100755 --- a/drivers/Makefile +++ b/drivers/Makefile @@ -32,7 +32,6 @@ LIB = $(obj)libdrivers.a # COBJS-y += ahci.o COBJS-y += at45.o -COBJS-y += ata_piix.o COBJS-y += cfi_flash.o COBJS-y += dataflash.o COBJS-y += sil680.o diff --git a/drivers/ata/Makefile b/drivers/ata/Makefile index f93d6cb..bc9da39 100644 --- a/drivers/ata/Makefile +++ b/drivers/ata/Makefile @@ -25,7 +25,7 @@ include $(TOPDIR)/config.mk LIB := $(obj)libata.a -COBJS-y += +COBJS-y += ata_piix.o COBJS := $(COBJS-y) SRCS := $(COBJS:.o=.c) diff --git a/drivers/ata_piix.c b/drivers/ata/ata_piix.c similarity index 100% rename from drivers/ata_piix.c rename to drivers/ata/ata_piix.c -- 1.5.3.2