* 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.
diff --git a/lib_arm/cache.c b/lib_arm/cache.c
index 4f3cbc2..61ee9d3 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;
 }