blob: 281a03124c1987f478b855cf1de875ba0f0350b2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
--- a/mdb.c
+++ b/mdb.c
@@ -77,8 +77,7 @@
#if defined(__mips) && defined(__linux)
/* MIPS has cache coherency issues, requires explicit cache control */
-#include <asm/cachectl.h>
-extern int cacheflush(char *addr, int nbytes, int cache);
+#include <sys/cachectl.h>
#define CACHEFLUSH(addr, bytes, cache) cacheflush(addr, bytes, cache)
#else
#define CACHEFLUSH(addr, bytes, cache)
|