From mboxrd@z Thu Jan 1 00:00:00 1970 From: Jean-Christophe PLAGNIOL-VILLARD Date: Thu, 11 Oct 2007 10:32:12 +0200 Subject: [U-Boot-Users] [PATCH] drivers/input : move input drivers to drivers/input In-Reply-To: <1192091549-25875-7-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> <1192091549-25875-2-git-send-email-plagnioj@jcrosoft.com> <1192091549-25875-3-git-send-email-plagnioj@jcrosoft.com> <1192091549-25875-4-git-send-email-plagnioj@jcrosoft.com> <1192091549-25875-5-git-send-email-plagnioj@jcrosoft.com> <1192091549-25875-6-git-send-email-plagnioj@jcrosoft.com> <1192091549-25875-7-git-send-email-plagnioj@jcrosoft.com> Message-ID: <1192091549-25875-8-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 | 2 -- drivers/input/Makefile | 3 ++- drivers/{ => input}/i8042.c | 0 drivers/{ => input}/keyboard.c | 0 4 files changed, 2 insertions(+), 3 deletions(-) rename drivers/{ => input}/i8042.c (100%) rename drivers/{ => input}/keyboard.c (100%) diff --git a/drivers/Makefile b/drivers/Makefile index cc758d7..8802d2f 100755 --- a/drivers/Makefile +++ b/drivers/Makefile @@ -44,8 +44,6 @@ COBJS-y += ati_radeon_fb.o COBJS-y += atmel_usart.o COBJS-y += cfb_console.o COBJS-y += ct69000.o -COBJS-y += i8042.o -COBJS-y += keyboard.o COBJS-y += netconsole.o COBJS-y += ns16550.o COBJS-y += s3c4510b_uart.o diff --git a/drivers/input/Makefile b/drivers/input/Makefile index 60371b3..491efaa 100644 --- a/drivers/input/Makefile +++ b/drivers/input/Makefile @@ -25,7 +25,8 @@ include $(TOPDIR)/config.mk LIB := $(obj)libinput.a -COBJS-y += +COBJS-y += i8042.o +COBJS-y += keyboard.o COBJS := $(COBJS-y) SRCS := $(COBJS:.o=.c) diff --git a/drivers/i8042.c b/drivers/input/i8042.c similarity index 100% rename from drivers/i8042.c rename to drivers/input/i8042.c diff --git a/drivers/keyboard.c b/drivers/input/keyboard.c similarity index 100% rename from drivers/keyboard.c rename to drivers/input/keyboard.c -- 1.5.3.2