summaryrefslogtreecommitdiffstats
path: root/lib_arm
diff options
context:
space:
mode:
authorwdenk <wdenk>2005-01-09 23:16:25 +0000
committerwdenk <wdenk>2005-01-09 23:16:25 +0000
commit8ed9604613398660f9ee855060661da8809d4045 (patch)
tree7901e427798e0d09ad53038d7b6112e10556ceae /lib_arm
parentff36fd8591776405eeb3a086ba1136bf1ece2ffb (diff)
downloadblackbird-obmc-uboot-8ed9604613398660f9ee855060661da8809d4045.tar.gz
blackbird-obmc-uboot-8ed9604613398660f9ee855060661da8809d4045.zip
* Patches by Richard Woodruff, 01 Oct 2004:
add support for the TI OMAP2420 processor and its H4 reference board * Patch by Christian Pellegrin, 24 Sep 2004: Added support for NE2000 compatible (DP8390, DP83902) NICs.
Diffstat (limited to 'lib_arm')
-rw-r--r--lib_arm/cache.c7
1 files changed, 7 insertions, 0 deletions
diff --git a/lib_arm/cache.c b/lib_arm/cache.c
index 4f3cbc2292..61ee9d3b13 100644
--- a/lib_arm/cache.c
+++ b/lib_arm/cache.c
@@ -23,7 +23,14 @@
/* for now: just dummy functions to satisfy the linker */
+#include <common.h>
+
void flush_cache (unsigned long dummy1, unsigned long dummy2)
{
+#ifdef CONFIG_OMAP2420
+ void arm1136_cache_flush(void);
+
+ arm1136_cache_flush();
+#endif
return;
}
OpenPOWER on IntegriCloud