diff options
author | Todd C. Miller <millert@cvs.openbsd.org> | 2002-03-14 01:27:20 +0000 |
---|---|---|
committer | Todd C. Miller <millert@cvs.openbsd.org> | 2002-03-14 01:27:20 +0000 |
commit | 8327d0774703553db5e1a41a04bfdf4b1797c2ce (patch) | |
tree | ac9a52bace179e17769651fb9f805070d78abe5f /sys/arch/hppa/dev/asp.c | |
parent | 7b2c79b5895287d37f0c4e3adfc396eb7a6c03fb (diff) |
First round of __P removal in sys
Diffstat (limited to 'sys/arch/hppa/dev/asp.c')
-rw-r--r-- | sys/arch/hppa/dev/asp.c | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/sys/arch/hppa/dev/asp.c b/sys/arch/hppa/dev/asp.c index 54d6997711d..d8a5824c6e5 100644 --- a/sys/arch/hppa/dev/asp.c +++ b/sys/arch/hppa/dev/asp.c @@ -1,4 +1,4 @@ -/* $OpenBSD: asp.c,v 1.5 2000/02/09 05:04:22 mickey Exp $ */ +/* $OpenBSD: asp.c,v 1.6 2002/03/14 01:26:31 millert Exp $ */ /* * Copyright (c) 1998,1999 Michael Shalayeff @@ -126,8 +126,8 @@ struct asp_softc { /* ASP "Primary Controller" HPA */ #define ASP_CHPA 0xF0800000 -int aspmatch __P((struct device *, void *, void *)); -void aspattach __P((struct device *, struct device *, void *)); +int aspmatch(struct device *, void *, void *); +void aspattach(struct device *, struct device *, void *); struct cfattach asp_ca = { sizeof(struct asp_softc), aspmatch, aspattach @@ -137,10 +137,10 @@ struct cfdriver asp_cd = { NULL, "asp", DV_DULL }; -void asp_intr_establish __P((void *v, u_int32_t mask)); -void asp_intr_disestablish __P((void *v, u_int32_t mask)); -u_int32_t asp_intr_check __P((void *v)); -void asp_intr_ack __P((void *v, u_int32_t mask)); +void asp_intr_establish(void *v, u_int32_t mask); +void asp_intr_disestablish(void *v, u_int32_t mask); +u_int32_t asp_intr_check(void *v); +void asp_intr_ack(void *v, u_int32_t mask); int aspmatch(parent, cfdata, aux) |