From 8f6fc2576cadc5d1d3ea8fcbae78096ba81a847f Mon Sep 17 00:00:00 2001 From: "Peter S. Mazinger" Date: Tue, 5 Apr 2011 16:29:53 +0200 Subject: cacheflush.c: compile only if __NR_cacheflush is available The header had to be removed under the guard, else asm/cachectl.h might not be available at all. While there, disable __cachectl prototype. Use untyped strong_alias for cacheflush because char * != void *. Signed-off-by: Peter S. Mazinger Signed-off-by: Bernhard Reutner-Fischer --- libc/sysdeps/linux/bfin/cacheflush.c | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) (limited to 'libc/sysdeps/linux/bfin') diff --git a/libc/sysdeps/linux/bfin/cacheflush.c b/libc/sysdeps/linux/bfin/cacheflush.c index a8d81c419..6ff3ad560 100644 --- a/libc/sysdeps/linux/bfin/cacheflush.c +++ b/libc/sysdeps/linux/bfin/cacheflush.c @@ -6,9 +6,10 @@ * Licensed under the LGPL v2.1, see the file COPYING.LIB in this tarball. */ -#include -#include #include -#include + +#ifdef __NR_cacheflush +# include _syscall3 (int, cacheflush, void *, start, const int, nbytes, const int, flags) +#endif -- cgit v1.2.3