diff options
author | wdenk <wdenk> | 2005-01-09 23:16:25 +0000 |
---|---|---|
committer | wdenk <wdenk> | 2005-01-09 23:16:25 +0000 |
commit | 8ed9604613398660f9ee855060661da8809d4045 (patch) | |
tree | 7901e427798e0d09ad53038d7b6112e10556ceae /lib_arm/cache.c | |
parent | ff36fd8591776405eeb3a086ba1136bf1ece2ffb (diff) |
* 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/cache.c')
-rw-r--r-- | lib_arm/cache.c | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/lib_arm/cache.c b/lib_arm/cache.c index 4f3cbc22928..61ee9d3b13b 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; } |