diff options
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; } |