summaryrefslogtreecommitdiff
path: root/sys/compat/linux/common/linux_time.c
diff options
context:
space:
mode:
authorchristos <christos@NetBSD.org>2007-03-04 05:59:00 +0000
committerchristos <christos@NetBSD.org>2007-03-04 05:59:00 +0000
commit53524e44efd7c7176da8dc8190a698b2fe184db1 (patch)
tree68b6fb4aee85c3eb0a522cc199c3a3427938828e /sys/compat/linux/common/linux_time.c
parent1b20cebad5f8d3582a41d5599641a95247721732 (diff)
Kill caddr_t; there will be some MI fallout, but it will be fixed shortly.
Diffstat (limited to 'sys/compat/linux/common/linux_time.c')
-rw-r--r--sys/compat/linux/common/linux_time.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/sys/compat/linux/common/linux_time.c b/sys/compat/linux/common/linux_time.c
index 7a88e12341a..9c585d0d317 100644
--- a/sys/compat/linux/common/linux_time.c
+++ b/sys/compat/linux/common/linux_time.c
@@ -1,4 +1,4 @@
-/* $NetBSD: linux_time.c,v 1.15 2007/02/09 21:55:19 ad Exp $ */
+/* $NetBSD: linux_time.c,v 1.16 2007/03/04 06:01:24 christos Exp $ */
/*-
* Copyright (c) 2001 The NetBSD Foundation, Inc.
@@ -37,7 +37,7 @@
*/
#include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: linux_time.c,v 1.15 2007/02/09 21:55:19 ad Exp $");
+__KERNEL_RCSID(0, "$NetBSD: linux_time.c,v 1.16 2007/03/04 06:01:24 christos Exp $");
#include <sys/param.h>
#include <sys/ucred.h>
@@ -183,7 +183,7 @@ linux_sys_clock_gettime(l, v, retval)
syscallarg(clockid_t) which;
syscallarg(struct linux_timespec *)tp;
} */ *uap = v;
- caddr_t sg;
+ void *sg;
struct proc *p = l->l_proc;
struct timespec *tp, ts;
struct linux_timespec lts;
@@ -223,7 +223,7 @@ linux_sys_clock_settime(l, v, retval)
syscallarg(clockid_t) which;
syscallarg(struct linux_timespec *)tp;
} */ *uap = v;
- caddr_t sg;
+ void *sg;
struct proc *p = l->l_proc;
struct timespec *tp, ts;
struct linux_timespec lts;
@@ -263,7 +263,7 @@ linux_sys_clock_getres(l, v, retval)
syscallarg(clockid_t) which;
syscallarg(struct linux_timespec *)tp;
} */ *uap = v;
- caddr_t sg;
+ void *sg;
struct proc *p = l->l_proc;
struct timespec *tp, ts;
struct linux_timespec lts;
@@ -312,7 +312,7 @@ linux_sys_clock_nanosleep(l, v, retval)
syscallarg(struct linux_timespec) *rqtp;
syscallarg(struct linux_timespec) *rmtp;
} */ *uap = v;
- caddr_t sg;
+ void *sg;
struct proc *p = l->l_proc;
struct timespec *rqtp, *rmtp;
struct linux_timespec lrqts, lrmts;