summaryrefslogtreecommitdiff
path: root/sys/arch/atari/dev/clock.c
diff options
context:
space:
mode:
authordsl <dsl@NetBSD.org>2009-03-14 14:45:51 +0000
committerdsl <dsl@NetBSD.org>2009-03-14 14:45:51 +0000
commit02cdf4d2c869ecfa1ae5484cf77eefe2fbcc6d94 (patch)
tree9a02e625d403e5fcedfdc6be4803e2404356bf31 /sys/arch/atari/dev/clock.c
parentdfbb3f921a23a1aba4463f31ef9233ac94ce606c (diff)
Remove all the __P() from sys (excluding sys/dist)
Diff checked with grep and MK1 eyeball. i386 and amd64 GENERIC and sys still build.
Diffstat (limited to 'sys/arch/atari/dev/clock.c')
-rw-r--r--sys/arch/atari/dev/clock.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/sys/arch/atari/dev/clock.c b/sys/arch/atari/dev/clock.c
index b00d03cac7a..578392982c3 100644
--- a/sys/arch/atari/dev/clock.c
+++ b/sys/arch/atari/dev/clock.c
@@ -1,4 +1,4 @@
-/* $NetBSD: clock.c,v 1.42 2008/11/04 16:43:47 abs Exp $ */
+/* $NetBSD: clock.c,v 1.43 2009/03/14 14:45:56 dsl Exp $ */
/*
* Copyright (c) 1982, 1990 The Regents of the University of California.
@@ -77,7 +77,7 @@
*/
#include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: clock.c,v 1.42 2008/11/04 16:43:47 abs Exp $");
+__KERNEL_RCSID(0, "$NetBSD: clock.c,v 1.43 2009/03/14 14:45:56 dsl Exp $");
#include <sys/param.h>
#include <sys/kernel.h>
@@ -149,8 +149,8 @@ dev_type_close(rtcclose);
dev_type_read(rtcread);
dev_type_write(rtcwrite);
-static void clockattach __P((struct device *, struct device *, void *));
-static int clockmatch __P((struct device *, struct cfdata *, void *));
+static void clockattach(struct device *, struct device *, void *);
+static int clockmatch(struct device *, struct cfdata *, void *);
CFATTACH_DECL(clock, sizeof(struct clock_softc),
clockmatch, clockattach, NULL, NULL);
@@ -162,9 +162,9 @@ const struct cdevsw rtc_cdevsw = {
nostop, notty, nopoll, nommap, nokqfilter,
};
-void statintr __P((struct clockframe));
+void statintr(struct clockframe);
-static int twodigits __P((char *, int));
+static int twodigits(char *, int);
static int divisor; /* Systemclock divisor */