summaryrefslogtreecommitdiff
path: root/sys/arch
diff options
context:
space:
mode:
authorDale Rahn <drahn@cvs.openbsd.org>2004-05-19 04:11:32 +0000
committerDale Rahn <drahn@cvs.openbsd.org>2004-05-19 04:11:32 +0000
commit757b5ac062ae44ec2edff9c36a5d01de68d93813 (patch)
tree51f48d961ee5660e507b4675b13604332dd0b962 /sys/arch
parentb0110d5f84150bee08ac8d665bb666d29f1c83b4 (diff)
de __P of sys/arch/cats.
Diffstat (limited to 'sys/arch')
-rw-r--r--sys/arch/cats/include/bootconfig.h4
-rw-r--r--sys/arch/cats/pci/pcib.c10
-rw-r--r--sys/arch/cats/pci/pciide_machdep.c4
3 files changed, 9 insertions, 9 deletions
diff --git a/sys/arch/cats/include/bootconfig.h b/sys/arch/cats/include/bootconfig.h
index b5c1a28d815..1940f83d5e9 100644
--- a/sys/arch/cats/include/bootconfig.h
+++ b/sys/arch/cats/include/bootconfig.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: bootconfig.h,v 1.1 2004/02/01 05:12:54 drahn Exp $ */
+/* $OpenBSD: bootconfig.h,v 1.2 2004/05/19 04:11:31 drahn Exp $ */
/* $NetBSD: bootconfig.h,v 1.2 2001/06/21 22:08:28 chris Exp $ */
/*
@@ -67,7 +67,7 @@ extern BootConfig bootconfig;
#define BOOTOPT_TYPE_HEXINT 4
#define BOOTOPT_TYPE_MASK 7
-int get_bootconf_option __P((char *string, char *option, int type, void *result));
+int get_bootconf_option (char *string, char *option, int type, void *result);
extern char *boot_args;
extern char *boot_file;
diff --git a/sys/arch/cats/pci/pcib.c b/sys/arch/cats/pci/pcib.c
index 12061487b8c..8825053f82a 100644
--- a/sys/arch/cats/pci/pcib.c
+++ b/sys/arch/cats/pci/pcib.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: pcib.c,v 1.1 2004/02/01 05:12:54 drahn Exp $ */
+/* $OpenBSD: pcib.c,v 1.2 2004/05/19 04:11:31 drahn Exp $ */
/* $NetBSD: pcib.c,v 1.4 2003/01/01 01:25:34 thorpej Exp $ */
/*-
@@ -54,8 +54,8 @@
#include "isadma.h"
-int pcibmatch __P((struct device *, void *, void *));
-void pcibattach __P((struct device *, struct device *, void *));
+int pcibmatch (struct device *, void *, void *);
+void pcibattach (struct device *, struct device *, void *);
struct cfattach pcib_ca = {
sizeof(struct device), pcibmatch, pcibattach
@@ -66,8 +66,8 @@ struct cfdriver pcib_cd = {
};
-void pcib_callback __P((struct device *));
-int pcib_print __P((void *, const char *));
+void pcib_callback (struct device *);
+int pcib_print (void *, const char *);
int
pcibmatch(parent, match, aux)
diff --git a/sys/arch/cats/pci/pciide_machdep.c b/sys/arch/cats/pci/pciide_machdep.c
index ca78a738f7d..b1fee7cd1ba 100644
--- a/sys/arch/cats/pci/pciide_machdep.c
+++ b/sys/arch/cats/pci/pciide_machdep.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: pciide_machdep.c,v 1.1 2004/02/01 05:12:55 drahn Exp $ */
+/* $OpenBSD: pciide_machdep.c,v 1.2 2004/05/19 04:11:31 drahn Exp $ */
/* $NetBSD: pciide_machdep.c,v 1.2 2002/09/27 15:35:56 provos Exp $ */
/*
@@ -59,7 +59,7 @@ pciide_machdep_compat_intr_establish(dev, pa, chan, func, arg)
struct device *dev;
struct pci_attach_args *pa;
int chan;
- int (*func) __P((void *));
+ int (*func) (void *);
void *arg;
{
#if NISA > 0