summaryrefslogtreecommitdiff
path: root/sys/arch/vax/qbus/ubavar.h
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/vax/qbus/ubavar.h
parent7b2c79b5895287d37f0c4e3adfc396eb7a6c03fb (diff)
First round of __P removal in sys
Diffstat (limited to 'sys/arch/vax/qbus/ubavar.h')
-rw-r--r--sys/arch/vax/qbus/ubavar.h14
1 files changed, 7 insertions, 7 deletions
diff --git a/sys/arch/vax/qbus/ubavar.h b/sys/arch/vax/qbus/ubavar.h
index 90a086a003d..cc401eb8acd 100644
--- a/sys/arch/vax/qbus/ubavar.h
+++ b/sys/arch/vax/qbus/ubavar.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: ubavar.h,v 1.2 2001/08/25 13:33:37 hugh Exp $ */
+/* $OpenBSD: ubavar.h,v 1.3 2002/03/14 01:26:48 millert Exp $ */
/* $NetBSD: ubavar.h,v 1.29 2000/06/04 06:17:04 matt Exp $ */
/*
@@ -74,11 +74,11 @@ struct uba_softc {
SIMPLEQ_HEAD(, uba_unit) uh_resq; /* resource wait chain */
SIMPLEQ_HEAD(, uba_reset) uh_resetq; /* ubareset queue */
int uh_lastiv; /* last free interrupt vector */
- int (*uh_errchk) __P((struct uba_softc *));
- void (*uh_beforescan) __P((struct uba_softc *));
- void (*uh_afterscan) __P((struct uba_softc *));
- void (*uh_ubainit) __P((struct uba_softc *));
- void (*uh_ubapurge) __P((struct uba_softc *, int));
+ int (*uh_errchk)(struct uba_softc *);
+ void (*uh_beforescan)(struct uba_softc *);
+ void (*uh_afterscan)(struct uba_softc *);
+ void (*uh_ubainit)(struct uba_softc *);
+ void (*uh_ubapurge)(struct uba_softc *, int);
short uh_nr; /* Unibus sequential number */
bus_space_tag_t uh_iot; /* Tag for this Unibus */
bus_space_handle_t uh_ioh; /* Handle for I/O space */
@@ -95,7 +95,7 @@ struct uba_unit {
SIMPLEQ_ENTRY(uba_unit) uu_resq;/* Queue while waiting for resources */
void *uu_softc; /* Pointer to units softc */
int uu_bdp; /* for controllers that hang on to bdp's */
- int (*uu_ready) __P((struct uba_unit *));
+ int (*uu_ready)(struct uba_unit *);
void *uu_ref; /* Buffer this is related to */
short uu_xclu; /* want exclusive use of bdp's */
short uu_keepbdp; /* hang on to bdp's once allocated */