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/hp300/dev/ppi.c | |
parent | 7b2c79b5895287d37f0c4e3adfc396eb7a6c03fb (diff) |
First round of __P removal in sys
Diffstat (limited to 'sys/arch/hp300/dev/ppi.c')
-rw-r--r-- | sys/arch/hp300/dev/ppi.c | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/sys/arch/hp300/dev/ppi.c b/sys/arch/hp300/dev/ppi.c index 21b93167729..720f80e5292 100644 --- a/sys/arch/hp300/dev/ppi.c +++ b/sys/arch/hp300/dev/ppi.c @@ -1,4 +1,4 @@ -/* $OpenBSD: ppi.c,v 1.8 2001/05/01 16:51:10 millert Exp $ */ +/* $OpenBSD: ppi.c,v 1.9 2002/03/14 01:26:30 millert Exp $ */ /* $NetBSD: ppi.c,v 1.13 1997/04/02 22:37:33 scottr Exp $ */ /* @@ -76,8 +76,8 @@ struct ppi_softc { #define PPIF_TIMO 0x08 #define PPIF_DELAY 0x10 -int ppimatch __P((struct device *, void *, void *)); -void ppiattach __P((struct device *, struct device *, void *)); +int ppimatch(struct device *, void *, void *); +void ppiattach(struct device *, struct device *, void *); struct cfattach ppi_ca = { sizeof(struct ppi_softc), ppimatch, ppiattach @@ -87,13 +87,13 @@ struct cfdriver ppi_cd = { NULL, "ppi", DV_DULL }; -void ppistart __P((void *)); -void ppinoop __P((void *)); +void ppistart(void *); +void ppinoop(void *); -void ppitimo __P((void *)); -int ppirw __P((dev_t, struct uio *)); -int ppihztoms __P((int)); -int ppimstohz __P((int)); +void ppitimo(void *); +int ppirw(dev_t, struct uio *); +int ppihztoms(int); +int ppimstohz(int); bdev_decl(ppi); cdev_decl(ppi); |