diff options
| author | Heiko Schocher <hs@denx.de> | 2011-11-29 02:33:46 +0000 | 
|---|---|---|
| committer | Albert ARIBAUD <albert.u.boot@aribaud.net> | 2011-12-06 23:59:37 +0100 | 
| commit | 5b51e7f3ca36f1ba445f9079835bf66304e16562 (patch) | |
| tree | f498f7e03833499ac63680c15cdf50bdd173db43 /nand_spl | |
| parent | 8a73e561fe7a357d51f00e86eb9853d7e7f803dc (diff) | |
| download | olio-uboot-2014.01-5b51e7f3ca36f1ba445f9079835bf66304e16562.tar.xz olio-uboot-2014.01-5b51e7f3ca36f1ba445f9079835bf66304e16562.zip | |
arm, davinci: move misc function in arch tree
move the board/davinci/common/misc.c file to
arch/arm/cpu/arm926ejs/davinci/misc.c, so all
davinci boards can use this functions.
Signed-off-by: Heiko Schocher <hs@denx.de>
Cc: Sandeep Paulraj <s-paulraj@ti.com>
Cc: Tom Rini <tom.rini@gmail.com>
Cc: Albert ARIBAUD <albert.u.boot@aribaud.net>
Cc: Christian Riesch <christian.riesch@omicron.at>
Diffstat (limited to 'nand_spl')
| -rw-r--r-- | nand_spl/board/davinci/da8xxevm/Makefile | 9 | 
1 files changed, 4 insertions, 5 deletions
| diff --git a/nand_spl/board/davinci/da8xxevm/Makefile b/nand_spl/board/davinci/da8xxevm/Makefile index 616e6f12c..3783c1896 100644 --- a/nand_spl/board/davinci/da8xxevm/Makefile +++ b/nand_spl/board/davinci/da8xxevm/Makefile @@ -127,15 +127,14 @@ $(obj)cpu.c:  	@rm -f $@  	@ln -s $(TOPDIR)/arch/arm/cpu/arm926ejs/davinci/cpu.c $@ -# from board directory -$(obj)hawkboard_nand_spl.c: +$(obj)misc.c:  	@rm -f $@ -	ln -s $(TOPDIR)/board/davinci/da8xxevm/hawkboard_nand_spl.c $@ +	ln -s $(TOPDIR)/arch/arm/cpu/arm926ejs/davinci/misc.c $@  # from board directory -$(obj)misc.c: +$(obj)hawkboard_nand_spl.c:  	@rm -f $@ -	ln -s $(TOPDIR)/board/davinci/common/misc.c $@ +	ln -s $(TOPDIR)/board/davinci/da8xxevm/hawkboard_nand_spl.c $@  $(obj)psc.c:  	@rm -f $@ |