summaryrefslogtreecommitdiff
path: root/sys/compat/linux
diff options
context:
space:
mode:
authorskrll <skrll@NetBSD.org>2018-01-24 09:04:40 +0000
committerskrll <skrll@NetBSD.org>2018-01-24 09:04:40 +0000
commit474ee3bb7ec87bb5d608d37526dcb71b33e91926 (patch)
treed41abeb309b369873c2747568a90759dad181e12 /sys/compat/linux
parenta6d1205449cd465adabf3b6e3861c7620aaf8947 (diff)
Remove port-acorn26
OK core@
Diffstat (limited to 'sys/compat/linux')
-rw-r--r--sys/compat/linux/arch/arm/linux_sys_machdep.c6
1 files changed, 2 insertions, 4 deletions
diff --git a/sys/compat/linux/arch/arm/linux_sys_machdep.c b/sys/compat/linux/arch/arm/linux_sys_machdep.c
index 7ed0cef6464..39f8cd345a1 100644
--- a/sys/compat/linux/arch/arm/linux_sys_machdep.c
+++ b/sys/compat/linux/arch/arm/linux_sys_machdep.c
@@ -1,4 +1,4 @@
-/* $NetBSD: linux_sys_machdep.c,v 1.14 2010/07/07 01:30:33 chs Exp $ */
+/* $NetBSD: linux_sys_machdep.c,v 1.15 2018/01/24 09:04:45 skrll Exp $ */
/*-
* Copyright (c) 2002 Ben Harris
@@ -29,7 +29,7 @@
#include <sys/param.h>
-__KERNEL_RCSID(0, "$NetBSD: linux_sys_machdep.c,v 1.14 2010/07/07 01:30:33 chs Exp $");
+__KERNEL_RCSID(0, "$NetBSD: linux_sys_machdep.c,v 1.15 2018/01/24 09:04:45 skrll Exp $");
#include <sys/systm.h>
#include <sys/signalvar.h>
@@ -59,7 +59,6 @@ linux_sys_breakpoint(struct lwp *l, const void *v, register_t *retval)
int
linux_sys_cacheflush(struct lwp *l, const struct linux_sys_cacheflush_args *uap, register_t *retval)
{
-#ifndef acorn26
/* {
syscallarg(uintptr_t) from;
syscallarg(uintptr_t) to;
@@ -68,7 +67,6 @@ linux_sys_cacheflush(struct lwp *l, const struct linux_sys_cacheflush_args *uap,
cpu_icache_sync_range(SCARG(uap, from),
SCARG(uap, to) - SCARG(uap, from) + 1);
-#endif
*retval = 0;
return 0;
}