diff options
author | David Gwynne <dlg@cvs.openbsd.org> | 2007-12-29 03:04:20 +0000 |
---|---|---|
committer | David Gwynne <dlg@cvs.openbsd.org> | 2007-12-29 03:04:20 +0000 |
commit | c7354b1a5535f46dd010542a77b5d6e208917499 (patch) | |
tree | 440fb578e0013b060cb02b7776783efe21639f65 /sys/dev/ic | |
parent | bdc3da388c13702b3e2330823091b60d30ba2764 (diff) |
fix comments after the members of scsi_adapter were changed.
prompted by krw@
Diffstat (limited to 'sys/dev/ic')
-rw-r--r-- | sys/dev/ic/iha.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/sys/dev/ic/iha.c b/sys/dev/ic/iha.c index e5f047686ff..d4873fd6cb1 100644 --- a/sys/dev/ic/iha.c +++ b/sys/dev/ic/iha.c @@ -1,4 +1,4 @@ -/* $OpenBSD: iha.c,v 1.28 2007/11/05 00:21:36 krw Exp $ */ +/* $OpenBSD: iha.c,v 1.29 2007/12/29 03:04:19 dlg Exp $ */ /*------------------------------------------------------------------------- * * Device driver for the INI-9XXXU/UW or INIC-940/950 PCI SCSI Controller. @@ -54,10 +54,10 @@ struct cfdriver iha_cd = { }; struct scsi_adapter iha_switch = { - iha_scsi_cmd, /* int (*scsi_cmd)(struct scsi_xfer *); */ - iha_minphys, /* void (*scsi_minphys)(struct buf *); */ - NULL, /* int (*open_target_lu)(void); */ - NULL /* int (*close_target_lu)(void); */ + iha_scsi_cmd, /* scsi_cmd() */ + iha_minphys, /* scsi_minphys() */ + NULL, /* probe_dev(void) */ + NULL /* free_dev() */ }; struct scsi_device iha_dev = { |