projects
/
u-boot.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
a7f39e7
)
imx: Use correct imx25 reset.c
author
Matthias Weisser
<weisserm@arcor.de>
Wed, 6 Jul 2011 00:28:29 +0000
(
00:28
+0000)
committer
Albert ARIBAUD
<albert.u.boot@aribaud.net>
Thu, 14 Jul 2011 13:41:24 +0000
(15:41 +0200)
imx25 used the wrong reset.c from imx27
Signed-off-by: Matthias Weisser <weisserm@arcor.de>
arch/arm/cpu/arm926ejs/mx25/Makefile
patch
|
blob
|
history
diff --git
a/arch/arm/cpu/arm926ejs/mx25/Makefile
b/arch/arm/cpu/arm926ejs/mx25/Makefile
index
38d7f03
..
3c2a65e
100644
(file)
--- a/
arch/arm/cpu/arm926ejs/mx25/Makefile
+++ b/
arch/arm/cpu/arm926ejs/mx25/Makefile
@@
-24,12
+24,10
@@
include $(TOPDIR)/config.mk
LIB = $(obj)lib$(SOC).o
-COBJS = generic.o timer.o
-MX27OBJS = reset.o
+COBJS = generic.o timer.o reset.o
SRCS := $(SOBJS:.o=.S) $(COBJS:.o=.c)
-SRCS += $(addprefix $(SRCTREE)/arch/arm/cpu/arm926ejs/mx27/,$(MX27OBJS:.o=.c))
-OBJS := $(addprefix $(obj),$(SOBJS) $(COBJS) $(MX27OBJS))
+OBJS := $(addprefix $(obj),$(SOBJS) $(COBJS))
all: $(obj).depend $(LIB)