diff options
author | Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> | 2007-11-18 18:36:11 +0100 |
---|---|---|
committer | Wolfgang Denk <wd@denx.de> | 2007-11-18 21:50:07 +0100 |
commit | 6bf4c686afca1e86e1c384d59218f914605713bf (patch) | |
tree | 5763990f6c34618b525391f31685fea746f5a021 /cpu/arm920t/s3c24x0/Makefile | |
parent | 6073f61e078da5ddb521b56256bcc36508589883 (diff) | |
download | u-boot-imx-6bf4c686afca1e86e1c384d59218f914605713bf.zip u-boot-imx-6bf4c686afca1e86e1c384d59218f914605713bf.tar.gz u-boot-imx-6bf4c686afca1e86e1c384d59218f914605713bf.tar.bz2 |
s3c24x0: Fix usb_ohci.c missing in Makefile
and usb_ohci.c warning differ in signedness
Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
Diffstat (limited to 'cpu/arm920t/s3c24x0/Makefile')
-rw-r--r-- | cpu/arm920t/s3c24x0/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cpu/arm920t/s3c24x0/Makefile b/cpu/arm920t/s3c24x0/Makefile index 0ff36c5..1ed9bf3 100644 --- a/cpu/arm920t/s3c24x0/Makefile +++ b/cpu/arm920t/s3c24x0/Makefile @@ -26,7 +26,7 @@ include $(TOPDIR)/config.mk LIB = $(obj)lib$(SOC).a COBJS = i2c.o interrupts.o serial.o speed.o \ - usb.o + usb.o usb_ohci.o SRCS := $(SOBJS:.o=.S) $(COBJS:.o=.c) OBJS := $(addprefix $(obj),$(SOBJS) $(COBJS)) |