summaryrefslogtreecommitdiff
path: root/sys/arch/alpha/eisa
diff options
context:
space:
mode:
authorTodd C. Miller <millert@cvs.openbsd.org>2002-03-14 01:27:20 +0000
committerTodd C. Miller <millert@cvs.openbsd.org>2002-03-14 01:27:20 +0000
commit8327d0774703553db5e1a41a04bfdf4b1797c2ce (patch)
treeac9a52bace179e17769651fb9f805070d78abe5f /sys/arch/alpha/eisa
parent7b2c79b5895287d37f0c4e3adfc396eb7a6c03fb (diff)
First round of __P removal in sys
Diffstat (limited to 'sys/arch/alpha/eisa')
-rw-r--r--sys/arch/alpha/eisa/eisa_machdep.h16
1 files changed, 8 insertions, 8 deletions
diff --git a/sys/arch/alpha/eisa/eisa_machdep.h b/sys/arch/alpha/eisa/eisa_machdep.h
index 589f705592c..52ac240c6c5 100644
--- a/sys/arch/alpha/eisa/eisa_machdep.h
+++ b/sys/arch/alpha/eisa/eisa_machdep.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: eisa_machdep.h,v 1.3 1996/10/30 22:38:47 niklas Exp $ */
+/* $OpenBSD: eisa_machdep.h,v 1.4 2002/03/14 01:26:26 millert Exp $ */
/* $NetBSD: eisa_machdep.h,v 1.1 1996/04/12 05:39:51 cgd Exp $ */
/*
@@ -37,15 +37,15 @@ typedef int eisa_intr_handle_t;
struct alpha_eisa_chipset {
void *ec_v;
- void (*ec_attach_hook) __P((struct device *, struct device *,
- struct eisabus_attach_args *));
- int (*ec_maxslots) __P((void *));
- int (*ec_intr_map) __P((void *, u_int,
- eisa_intr_handle_t *));
- const char *(*ec_intr_string) __P((void *, eisa_intr_handle_t));
+ void (*ec_attach_hook)(struct device *, struct device *,
+ struct eisabus_attach_args *);
+ int (*ec_maxslots)(void *);
+ int (*ec_intr_map)(void *, u_int,
+ eisa_intr_handle_t *);
+ const char *(*ec_intr_string)(void *, eisa_intr_handle_t);
void *(*ec_intr_establish) __P((void *, eisa_intr_handle_t,
int, int, int (*)(void *), void *, char *));
- void (*ec_intr_disestablish) __P((void *, void *));
+ void (*ec_intr_disestablish)(void *, void *);
};
/*