about summary refs log tree commit diff
path: root/arch/microblaze/syscall_arch.h
diff options
context:
space:
mode:
authorRich Felker <dalias@aerifal.cx>2014-11-22 21:50:13 -0500
committerRich Felker <dalias@aerifal.cx>2014-11-22 21:50:13 -0500
commit4134c68dd4dc23ed358c8301da56225d21d655d9 (patch)
tree5b1e5a1e38ca31c4b10c6cbe3f99e6a7b9027376 /arch/microblaze/syscall_arch.h
parent0e971b0e3f4b9c99a7ce67b10d851fc885c188d5 (diff)
downloadmusl-4134c68dd4dc23ed358c8301da56225d21d655d9.tar.gz
musl-4134c68dd4dc23ed358c8301da56225d21d655d9.tar.xz
musl-4134c68dd4dc23ed358c8301da56225d21d655d9.zip
unify non-inline version of syscall code across archs
except powerpc, which still lacks inline syscalls simply because
nobody has written the code, these are all fallbacks used to work
around a clang bug that probably does not exist in versions of clang
that can compile musl. however, it's useful to have the generic
non-inline code anyway, as it eases the task of porting to new archs:
writing inline syscall code is now optional. this approach could also
help support compilers which don't understand inline asm or lack
support for the needed register constraints.

mips could not be unified because it has special fixup code for broken
layout of the kernel's struct stat.
Diffstat (limited to 'arch/microblaze/syscall_arch.h')
-rw-r--r--arch/microblaze/syscall_arch.h36
1 files changed, 2 insertions, 34 deletions
diff --git a/arch/microblaze/syscall_arch.h b/arch/microblaze/syscall_arch.h
index cab4607d..79f98340 100644
--- a/arch/microblaze/syscall_arch.h
+++ b/arch/microblaze/syscall_arch.h
@@ -100,39 +100,7 @@ static inline long __syscall6(long n, long a, long b, long c, long d, long e, lo
 
 #else
 
-static inline long __syscall0(long n)
-{
-	return (__syscall)(n);
-}
-
-static inline long __syscall1(long n, long a)
-{
-	return (__syscall)(n, a);
-}
-
-static inline long __syscall2(long n, long a, long b)
-{
-	return (__syscall)(n, a, b);
-}
-
-static inline long __syscall3(long n, long a, long b, long c)
-{
-	return (__syscall)(n, a, b, c);
-}
-
-static inline long __syscall4(long n, long a, long b, long c, long d)
-{
-	return (__syscall)(n, a, b, c, d);
-}
-
-static inline long __syscall5(long n, long a, long b, long c, long d, long e)
-{
-	return (__syscall)(n, a, b, c, d, e);
-}
-
-static inline long __syscall6(long n, long a, long b, long c, long d, long e, long f)
-{
-	return (__syscall)(n, a, b, c, d, e, f);
-}
+#undef SYSCALL_NO_INLINE
+#define SYSCALL_NO_INLINE
 
 #endif