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/dev/isa/pcppi.c | |
parent | 7b2c79b5895287d37f0c4e3adfc396eb7a6c03fb (diff) |
First round of __P removal in sys
Diffstat (limited to 'sys/dev/isa/pcppi.c')
-rw-r--r-- | sys/dev/isa/pcppi.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/sys/dev/isa/pcppi.c b/sys/dev/isa/pcppi.c index f8e71d388db..3997193ad91 100644 --- a/sys/dev/isa/pcppi.c +++ b/sys/dev/isa/pcppi.c @@ -1,4 +1,4 @@ -/* $OpenBSD: pcppi.c,v 1.3 2001/04/17 04:30:50 aaron Exp $ */ +/* $OpenBSD: pcppi.c,v 1.4 2002/03/14 01:26:56 millert Exp $ */ /* $NetBSD: pcppi.c,v 1.1 1998/04/15 20:26:18 drochner Exp $ */ /* @@ -49,7 +49,7 @@ #include <dev/ic/pckbcvar.h> #include <dev/pckbc/pckbdvar.h> -void pcppi_pckbd_bell __P((void *, u_int, u_int, u_int, int)); +void pcppi_pckbd_bell(void *, u_int, u_int, u_int, int); #endif struct pcppi_softc { @@ -67,11 +67,11 @@ struct pcppi_softc { #define __BROKEN_INDIRECT_CONFIG /* XXX */ #ifdef __BROKEN_INDIRECT_CONFIG -int pcppi_match __P((struct device *, void *, void *)); +int pcppi_match(struct device *, void *, void *); #else -int pcppi_match __P((struct device *, struct cfdata *, void *)); +int pcppi_match(struct device *, struct cfdata *, void *); #endif -void pcppi_attach __P((struct device *, struct device *, void *)); +void pcppi_attach(struct device *, struct device *, void *); struct cfattach pcppi_ca = { sizeof(struct pcppi_softc), pcppi_match, pcppi_attach, @@ -81,7 +81,7 @@ struct cfdriver pcppi_cd = { NULL, "pcppi", DV_DULL }; -static void pcppi_bell_stop __P((void*)); +static void pcppi_bell_stop(void*); #define PCPPIPRI (PZERO - 1) |