summaryrefslogtreecommitdiff
path: root/libc
diff options
context:
space:
mode:
authorMike Frysinger <vapier@gentoo.org>2005-08-15 03:15:48 +0000
committerMike Frysinger <vapier@gentoo.org>2005-08-15 03:15:48 +0000
commita71f2d1c558f9a75cde4f0cad46df3bcb1e987f5 (patch)
tree13e48a55ffafafcf2bcba7c9adfd2921bfad9ab7 /libc
parentfd8327ec78cf9471d6468849a4702217f2db8c0c (diff)
arm has its own iopl.c now so we dont need ugly #ifdef check for arm
Diffstat (limited to 'libc')
-rw-r--r--libc/sysdeps/linux/common/iopl.c11
1 files changed, 4 insertions, 7 deletions
diff --git a/libc/sysdeps/linux/common/iopl.c b/libc/sysdeps/linux/common/iopl.c
index 9e507bebc..dd45563c2 100644
--- a/libc/sysdeps/linux/common/iopl.c
+++ b/libc/sysdeps/linux/common/iopl.c
@@ -2,22 +2,19 @@
/*
* iopl() for uClibc
*
- * Copyright (C) 2000-2004 by Erik Andersen <andersen@codepoet.org>
+ * Copyright (C) 2000-2005 by Erik Andersen <andersen@codepoet.org>
*
* GNU Library General Public License (LGPL) version 2 or later.
*/
#include "syscalls.h"
-/* For arm there is a totally different implementation */
-#if !defined(__arm__)
/* Tuns out the m68k unistd.h kernel header is broken */
-# if defined __ARCH_HAS_MMU__ && defined __NR_iopl && ( !defined(__mc68000__))
+#if defined __ARCH_HAS_MMU__ && defined __NR_iopl && ( !defined(__mc68000__))
_syscall1(int, iopl, int, level);
-# else
+#else
int iopl(int level)
{
__set_errno(ENOSYS);
return -1;
}
-# endif
-# endif
+#endif