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/scsi/ch.c | |
parent | 7b2c79b5895287d37f0c4e3adfc396eb7a6c03fb (diff) |
First round of __P removal in sys
Diffstat (limited to 'sys/scsi/ch.c')
-rw-r--r-- | sys/scsi/ch.c | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/sys/scsi/ch.c b/sys/scsi/ch.c index 8bb033d664b..743cd84d38a 100644 --- a/sys/scsi/ch.c +++ b/sys/scsi/ch.c @@ -1,4 +1,4 @@ -/* $OpenBSD: ch.c,v 1.11 2001/06/22 14:35:42 deraadt Exp $ */ +/* $OpenBSD: ch.c,v 1.12 2002/03/14 01:27:13 millert Exp $ */ /* $NetBSD: ch.c,v 1.26 1997/02/21 22:06:52 thorpej Exp $ */ /* @@ -94,8 +94,8 @@ struct ch_softc { #define CHF_ROTATE 0x01 /* picker can rotate */ /* Autoconfiguration glue */ -int chmatch __P((struct device *, void *, void *)); -void chattach __P((struct device *, struct device *, void *)); +int chmatch(struct device *, void *, void *); +void chattach(struct device *, struct device *, void *); struct cfattach ch_ca = { sizeof(struct ch_softc), chmatch, chattach @@ -115,13 +115,13 @@ struct scsi_device ch_switch = { NULL, NULL, NULL, NULL }; -int ch_move __P((struct ch_softc *, struct changer_move *)); -int ch_exchange __P((struct ch_softc *, struct changer_exchange *)); -int ch_position __P((struct ch_softc *, struct changer_position *)); -int ch_usergetelemstatus __P((struct ch_softc *, int, u_int8_t *)); -int ch_getelemstatus __P((struct ch_softc *, int, int, caddr_t, size_t)); -int ch_get_params __P((struct ch_softc *, int)); -void ch_get_quirks __P((struct ch_softc *, struct scsi_inquiry_data *)); +int ch_move(struct ch_softc *, struct changer_move *); +int ch_exchange(struct ch_softc *, struct changer_exchange *); +int ch_position(struct ch_softc *, struct changer_position *); +int ch_usergetelemstatus(struct ch_softc *, int, u_int8_t *); +int ch_getelemstatus(struct ch_softc *, int, int, caddr_t, size_t); +int ch_get_params(struct ch_softc *, int); +void ch_get_quirks(struct ch_softc *, struct scsi_inquiry_data *); /* * SCSI changer quirks. |