diff options
author | Ilya Yanok <yanok@emcraft.com> | 2011-11-28 06:37:32 +0000 |
---|---|---|
committer | Albert ARIBAUD <albert.u.boot@aribaud.net> | 2011-12-06 23:59:35 +0100 |
commit | 2f3427ccb915c6f6774f0bcebb67c648dc25dcfd (patch) | |
tree | ac4a8d2df87f945c8b44777a11d0d05e202df8c8 /arch/arm/cpu/arm926ejs/Makefile | |
parent | 918588cfd380cdd93c796f9217283737b45887c6 (diff) | |
download | u-boot-imx-2f3427ccb915c6f6774f0bcebb67c648dc25dcfd.zip u-boot-imx-2f3427ccb915c6f6774f0bcebb67c648dc25dcfd.tar.gz u-boot-imx-2f3427ccb915c6f6774f0bcebb67c648dc25dcfd.tar.bz2 |
arm926ejs: add noop implementation for dcache ops
Added noop implementation for dcache operations that will buzz
about missing real implementation and disable the dcache.
This fixes compilation of DaVinci EMAC driver on arm926ejs.
Signed-off-by: Ilya Yanok <yanok@emcraft.com>
Diffstat (limited to 'arch/arm/cpu/arm926ejs/Makefile')
-rw-r--r-- | arch/arm/cpu/arm926ejs/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/arm/cpu/arm926ejs/Makefile b/arch/arm/cpu/arm926ejs/Makefile index a56ff08..5923e65 100644 --- a/arch/arm/cpu/arm926ejs/Makefile +++ b/arch/arm/cpu/arm926ejs/Makefile @@ -26,7 +26,7 @@ include $(TOPDIR)/config.mk LIB = $(obj)lib$(CPU).o START = start.o -COBJS = cpu.o +COBJS = cpu.o cache.o ifdef CONFIG_SPL_BUILD ifdef CONFIG_SPL_NO_CPU_SUPPORT_CODE |