[U-Boot-Users] [PATCH 16/30] drivers/video : move video drivers to drivers/video

From 938cd7a4fc0166efbb0ba80cadd92d8286f89887 Mon Sep 17 00:00:00 2001
From: Jean-Christophe PLAGNIOL-VILLARD plagnioj@jcrosoft.com Date: Sun, 23 Sep 2007 03:33:41 +0200 Subject: [PATCH] drivers/video : move video drivers to drivers/video
Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD plagnioj@jcrosoft.com --- drivers/Makefile | 11 ++++------- drivers/video/Makefile | 3 ++- drivers/{ => video}/ati_ids.h | 0 drivers/{ => video}/ati_radeon_fb.c | 0 drivers/{ => video}/ati_radeon_fb.h | 0 drivers/{ => video}/cfb_console.c | 0 drivers/{ => video}/ct69000.c | 0 drivers/{ => video}/sed13806.c | 0 drivers/{ => video}/sed156x.c | 0 drivers/{ => video}/sm501.c | 0 drivers/{ => video}/smiLynxEM.c | 0 drivers/{ => video}/videomodes.c | 0 drivers/{ => video}/videomodes.h | 0 13 files changed, 6 insertions(+), 8 deletions(-) rename drivers/{ => video}/ati_ids.h (100%) rename drivers/{ => video}/ati_radeon_fb.c (100%) rename drivers/{ => video}/ati_radeon_fb.h (100%) rename drivers/{ => video}/cfb_console.c (100%) rename drivers/{ => video}/ct69000.c (100%) rename drivers/{ => video}/sed13806.c (100%) rename drivers/{ => video}/sed156x.c (100%) rename drivers/{ => video}/sm501.c (100%) rename drivers/{ => video}/smiLynxEM.c (100%) rename drivers/{ => video}/videomodes.c (100%) rename drivers/{ => video}/videomodes.h (100%)
diff --git a/drivers/Makefile b/drivers/Makefile index 86722e9..cd832ce 100755 --- a/drivers/Makefile +++ b/drivers/Makefile @@ -28,8 +28,8 @@ include $(TOPDIR)/config.mk LIB = $(obj)libdrivers.a
COBJS = 3c589.o 5701rls.o ali512x.o atmel_usart.o \ - bcm570x.o bcm570x_autoneg.o cfb_console.o \ - cs8900.o ct69000.o dc2114x.o dm9000x.o \ + bcm570x.o bcm570x_autoneg.o \ + cs8900.o dc2114x.o dm9000x.o \ e1000.o eepro100.o enc28j60.o \ inca-ip_sw.o \ lan91c96.o macb.o \ @@ -38,16 +38,13 @@ COBJS = 3c589.o 5701rls.o ali512x.o atmel_usart.o \ pcnet.o plb2800_eth.o \ rtl8019.o rtl8139.o rtl8169.o \ s3c4510b_eth.o s3c4510b_uart.o \ - sed13806.o sed156x.o \ serial.o serial_max3100.o \ serial_pl010.o serial_pl011.o serial_xuartlite.o \ - sm501.o smc91111.o smiLynxEM.o \ + smc91111.o \ ti_pci1410a.o tigon3.o tsec.o \ tsi108_eth.o \ usbtty.o \ - videomodes.o \ - ks8695eth.o \ - ati_radeon_fb.o + ks8695eth.o
SRCS := $(COBJS:.o=.c) OBJS := $(addprefix $(obj),$(COBJS)) diff --git a/drivers/video/Makefile b/drivers/video/Makefile index d33aa0c..5dedab2 100644 --- a/drivers/video/Makefile +++ b/drivers/video/Makefile @@ -25,7 +25,8 @@ include $(TOPDIR)/config.mk
LIB := $(obj)libvideo.a
-COBJS := +COBJS := ati_radeon_fb.o cfb_console.o ct69000.o sed13806.o sed156x.o \ + sm501.o smiLynxEM.o videomodes.o
SRCS := $(COBJS:.o=.c) OBJS := $(addprefix $(obj),$(COBJS)) diff --git a/drivers/ati_ids.h b/drivers/video/ati_ids.h similarity index 100% rename from drivers/ati_ids.h rename to drivers/video/ati_ids.h diff --git a/drivers/ati_radeon_fb.c b/drivers/video/ati_radeon_fb.c similarity index 100% rename from drivers/ati_radeon_fb.c rename to drivers/video/ati_radeon_fb.c diff --git a/drivers/ati_radeon_fb.h b/drivers/video/ati_radeon_fb.h similarity index 100% rename from drivers/ati_radeon_fb.h rename to drivers/video/ati_radeon_fb.h diff --git a/drivers/cfb_console.c b/drivers/video/cfb_console.c similarity index 100% rename from drivers/cfb_console.c rename to drivers/video/cfb_console.c diff --git a/drivers/ct69000.c b/drivers/video/ct69000.c similarity index 100% rename from drivers/ct69000.c rename to drivers/video/ct69000.c diff --git a/drivers/sed13806.c b/drivers/video/sed13806.c similarity index 100% rename from drivers/sed13806.c rename to drivers/video/sed13806.c diff --git a/drivers/sed156x.c b/drivers/video/sed156x.c similarity index 100% rename from drivers/sed156x.c rename to drivers/video/sed156x.c diff --git a/drivers/sm501.c b/drivers/video/sm501.c similarity index 100% rename from drivers/sm501.c rename to drivers/video/sm501.c diff --git a/drivers/smiLynxEM.c b/drivers/video/smiLynxEM.c similarity index 100% rename from drivers/smiLynxEM.c rename to drivers/video/smiLynxEM.c diff --git a/drivers/videomodes.c b/drivers/video/videomodes.c similarity index 100% rename from drivers/videomodes.c rename to drivers/video/videomodes.c diff --git a/drivers/videomodes.h b/drivers/video/videomodes.h similarity index 100% rename from drivers/videomodes.h rename to drivers/video/videomodes.h
participants (1)
-
Jean-Christophe PLAGNIOL-VILLARD