diff options
| author | christos <christos@NetBSD.org> | 2006-11-16 01:32:37 +0000 |
|---|---|---|
| committer | christos <christos@NetBSD.org> | 2006-11-16 01:32:37 +0000 |
| commit | 168cd830d22e1f4a4c2bde1105f9f94d40fb870d (patch) | |
| tree | f82ce44db748b3513a12da35feca2a8d352de90f /sys/dev/clockctl.c | |
| parent | c72ed40f2540010a7b00337d0da9266cc2092eb6 (diff) | |
__unused removal on arguments; approved by core.
Diffstat (limited to 'sys/dev/clockctl.c')
| -rw-r--r-- | sys/dev/clockctl.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/sys/dev/clockctl.c b/sys/dev/clockctl.c index 6c20162851e..3f220c944a6 100644 --- a/sys/dev/clockctl.c +++ b/sys/dev/clockctl.c @@ -1,4 +1,4 @@ -/* $NetBSD: clockctl.c,v 1.19 2006/10/12 01:30:50 christos Exp $ */ +/* $NetBSD: clockctl.c,v 1.20 2006/11/16 01:32:44 christos Exp $ */ /*- * Copyright (c) 2001 The NetBSD Foundation, Inc. @@ -31,7 +31,7 @@ */ #include <sys/cdefs.h> -__KERNEL_RCSID(0, "$NetBSD: clockctl.c,v 1.19 2006/10/12 01:30:50 christos Exp $"); +__KERNEL_RCSID(0, "$NetBSD: clockctl.c,v 1.20 2006/11/16 01:32:44 christos Exp $"); #include "opt_ntp.h" @@ -62,7 +62,7 @@ const struct cdevsw clockctl_cdevsw = { /*ARGSUSED*/ void -clockctlattach(int num __unused) +clockctlattach(int num) { /* Nothing to set up before open is called */ return; @@ -70,10 +70,10 @@ clockctlattach(int num __unused) int clockctlioctl( - dev_t dev __unused, + dev_t dev, u_long cmd, caddr_t data, - int flags __unused, + int flags, struct lwp *l) { int error = 0; |
