summaryrefslogtreecommitdiff
path: root/sys/arch/macppc/dev/ofcons.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/macppc/dev/ofcons.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/macppc/dev/ofcons.c')
-rw-r--r--sys/arch/macppc/dev/ofcons.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/sys/arch/macppc/dev/ofcons.c b/sys/arch/macppc/dev/ofcons.c
index 4c96c965e31..aef04af53c9 100644
--- a/sys/arch/macppc/dev/ofcons.c
+++ b/sys/arch/macppc/dev/ofcons.c
@@ -1,4 +1,4 @@
-/* $NetBSD: ofcons.c,v 1.23 2008/06/13 11:54:31 cegger Exp $ */
+/* $NetBSD: ofcons.c,v 1.24 2009/03/14 14:46:01 dsl Exp $ */
/*
* Copyright (C) 1995, 1996 Wolfgang Solfrank.
@@ -32,7 +32,7 @@
*/
#include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: ofcons.c,v 1.23 2008/06/13 11:54:31 cegger Exp $");
+__KERNEL_RCSID(0, "$NetBSD: ofcons.c,v 1.24 2009/03/14 14:46:01 dsl Exp $");
#include <sys/param.h>
#include <sys/conf.h>
@@ -63,8 +63,8 @@ struct ofcons_softc {
static int stdin, stdout;
-static int ofcmatch __P((struct device *, struct cfdata *, void *));
-static void ofcattach __P((struct device *, struct device *, void *));
+static int ofcmatch(struct device *, struct cfdata *, void *);
+static void ofcattach(struct device *, struct device *, void *);
CFATTACH_DECL(macofcons, sizeof(struct ofcons_softc),
ofcmatch, ofcattach, NULL, NULL);