diff options
author | David Gwynne <dlg@cvs.openbsd.org> | 2006-11-26 11:15:23 +0000 |
---|---|---|
committer | David Gwynne <dlg@cvs.openbsd.org> | 2006-11-26 11:15:23 +0000 |
commit | e115367249d5f4d701a65023d2a9e011c19912bb (patch) | |
tree | f4ddf45b5c5ad99406942804b753842134b44288 /sys | |
parent | fc5e33634728bde6c974cd8aeff04d1c32f3aae9 (diff) |
no argument names in prototypes pls
Diffstat (limited to 'sys')
-rw-r--r-- | sys/scsi/scsiconf.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/scsi/scsiconf.h b/sys/scsi/scsiconf.h index 143226f6204..afb6f531a39 100644 --- a/sys/scsi/scsiconf.h +++ b/sys/scsi/scsiconf.h @@ -1,4 +1,4 @@ -/* $OpenBSD: scsiconf.h,v 1.77 2006/11/26 09:29:07 dlg Exp $ */ +/* $OpenBSD: scsiconf.h,v 1.78 2006/11/26 11:15:22 dlg Exp $ */ /* $NetBSD: scsiconf.h,v 1.35 1997/04/02 02:29:38 mycroft Exp $ */ /* @@ -103,8 +103,8 @@ struct scsi_adapter { void (*scsi_minphys)(struct buf *); int (*open_target_lu)(void); int (*close_target_lu)(void); - int (*ioctl)(struct scsi_link *, u_long cmd, - caddr_t addrp, int flag, struct proc *p); + int (*ioctl)(struct scsi_link *, u_long, caddr_t, int, + struct proc *); }; /* |