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/cd_scsi.c | |
parent | 7b2c79b5895287d37f0c4e3adfc396eb7a6c03fb (diff) |
First round of __P removal in sys
Diffstat (limited to 'sys/scsi/cd_scsi.c')
-rw-r--r-- | sys/scsi/cd_scsi.c | 24 |
1 files changed, 12 insertions, 12 deletions
diff --git a/sys/scsi/cd_scsi.c b/sys/scsi/cd_scsi.c index 9f57e80327f..1e3e476c3a5 100644 --- a/sys/scsi/cd_scsi.c +++ b/sys/scsi/cd_scsi.c @@ -1,4 +1,4 @@ -/* $OpenBSD: cd_scsi.c,v 1.3 2001/06/22 14:35:42 deraadt Exp $ */ +/* $OpenBSD: cd_scsi.c,v 1.4 2002/03/14 01:27:13 millert Exp $ */ /* $NetBSD: cd_scsi.c,v 1.14 1998/08/31 22:28:06 cgd Exp $ */ /*- @@ -79,17 +79,17 @@ #include <scsi/scsiconf.h> #include <scsi/cdvar.h> -int cd_scsibus_get_mode __P((struct cd_softc *, - struct scsi_cd_mode_data *, int, int, int)); -int cd_scsibus_set_mode __P((struct cd_softc *, - struct scsi_cd_mode_data *, int, int)); - -int cd_scsibus_setchan __P((struct cd_softc *, int, int, int, int, int)); -int cd_scsibus_getvol __P((struct cd_softc *, struct ioc_vol *, int)); -int cd_scsibus_setvol __P((struct cd_softc *, const struct ioc_vol *, - int)); -int cd_scsibus_set_pa_immed __P((struct cd_softc *, int)); -int cd_scsibus_load_unload __P((struct cd_softc *, int, int)); +int cd_scsibus_get_mode(struct cd_softc *, + struct scsi_cd_mode_data *, int, int, int); +int cd_scsibus_set_mode(struct cd_softc *, + struct scsi_cd_mode_data *, int, int); + +int cd_scsibus_setchan(struct cd_softc *, int, int, int, int, int); +int cd_scsibus_getvol(struct cd_softc *, struct ioc_vol *, int); +int cd_scsibus_setvol(struct cd_softc *, const struct ioc_vol *, + int); +int cd_scsibus_set_pa_immed(struct cd_softc *, int); +int cd_scsibus_load_unload(struct cd_softc *, int, int); const struct cd_ops cd_scsibus_ops = { cd_scsibus_setchan, |