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 | |
parent | bdc3da388c13702b3e2330823091b60d30ba2764 (diff) |
fix comments after the members of scsi_adapter were changed.
prompted by krw@
Diffstat (limited to 'sys')
-rw-r--r-- | sys/arch/mac68k/dev/ncr5380.c | 10 | ||||
-rw-r--r-- | sys/arch/mac68k/dev/sbc.c | 10 | ||||
-rw-r--r-- | sys/arch/sparc/dev/si.c | 10 | ||||
-rw-r--r-- | sys/arch/vax/vsa/ncr.c | 10 | ||||
-rw-r--r-- | sys/dev/ic/iha.c | 10 |
5 files changed, 25 insertions, 25 deletions
diff --git a/sys/arch/mac68k/dev/ncr5380.c b/sys/arch/mac68k/dev/ncr5380.c index 56ffdeea54a..10b714bbac9 100644 --- a/sys/arch/mac68k/dev/ncr5380.c +++ b/sys/arch/mac68k/dev/ncr5380.c @@ -1,4 +1,4 @@ -/* $OpenBSD: ncr5380.c,v 1.32 2007/11/25 16:40:03 jmc Exp $ */ +/* $OpenBSD: ncr5380.c,v 1.33 2007/12/29 03:04:18 dlg Exp $ */ /* $NetBSD: ncr5380.c,v 1.38 1996/12/19 21:48:18 scottr Exp $ */ /* @@ -78,10 +78,10 @@ static int mac68k_ncr5380_scsi_cmd(struct scsi_xfer *xs); static void ncr5380_show_scsi_cmd(struct scsi_xfer *xs); struct scsi_adapter ncr5380_switch = { - mac68k_ncr5380_scsi_cmd, /* scsi_cmd() */ - ncr5380_minphys, /* scsi_minphys() */ - 0, /* open_target_lu() */ - 0 /* close_target_lu() */ + mac68k_ncr5380_scsi_cmd, /* scsi_cmd() */ + ncr5380_minphys, /* scsi_minphys() */ + NULL, /* probe_dev() */ + NULL /* free_dev() */ }; struct scsi_device ncr5380_dev = { diff --git a/sys/arch/mac68k/dev/sbc.c b/sys/arch/mac68k/dev/sbc.c index 5d69060cd94..2aa2df17931 100644 --- a/sys/arch/mac68k/dev/sbc.c +++ b/sys/arch/mac68k/dev/sbc.c @@ -1,4 +1,4 @@ -/* $OpenBSD: sbc.c,v 1.16 2006/12/13 21:12:56 miod Exp $ */ +/* $OpenBSD: sbc.c,v 1.17 2007/12/29 03:04:18 dlg Exp $ */ /* $NetBSD: sbc.c,v 1.24 1997/04/18 17:38:08 scottr Exp $ */ /* @@ -79,10 +79,10 @@ int sbc_options = 0 /* | SBC_PDMA */; static void sbc_minphys(struct buf *bp); struct scsi_adapter sbc_ops = { - ncr5380_scsi_cmd, /* scsi_cmd() */ - sbc_minphys, /* scsi_minphys() */ - NULL, /* open_target_lu() */ - NULL, /* close_target_lu() */ + ncr5380_scsi_cmd, /* scsi_cmd() */ + sbc_minphys, /* scsi_minphys() */ + NULL, /* probe_dev() */ + NULL, /* free_dev() */ }; /* This is copied from julian's bt driver */ diff --git a/sys/arch/sparc/dev/si.c b/sys/arch/sparc/dev/si.c index 356b0e3a91f..0e6163826e6 100644 --- a/sys/arch/sparc/dev/si.c +++ b/sys/arch/sparc/dev/si.c @@ -1,4 +1,4 @@ -/* $OpenBSD: si.c,v 1.28 2007/11/27 16:22:13 martynas Exp $ */ +/* $OpenBSD: si.c,v 1.29 2007/12/29 03:04:19 dlg Exp $ */ /* $NetBSD: si.c,v 1.38 1997/08/27 11:24:20 bouyer Exp $ */ /*- @@ -211,10 +211,10 @@ void si_obio_intr_on(struct ncr5380_softc *); void si_obio_intr_off(struct ncr5380_softc *); static struct scsi_adapter si_ops = { - ncr5380_scsi_cmd, /* scsi_cmd() */ - si_minphys, /* scsi_minphys() */ - NULL, /* open_target_lu() */ - NULL, /* close_target_lu() */ + ncr5380_scsi_cmd, /* scsi_cmd() */ + si_minphys, /* scsi_minphys() */ + NULL, /* probe_dev() */ + NULL, /* free_dev() */ }; /* This is copied from julian's bt driver */ diff --git a/sys/arch/vax/vsa/ncr.c b/sys/arch/vax/vsa/ncr.c index fd33ad627a7..2a38419148a 100644 --- a/sys/arch/vax/vsa/ncr.c +++ b/sys/arch/vax/vsa/ncr.c @@ -1,4 +1,4 @@ -/* $OpenBSD: ncr.c,v 1.21 2006/12/13 21:12:58 miod Exp $ */ +/* $OpenBSD: ncr.c,v 1.22 2007/12/29 03:04:19 dlg Exp $ */ /* $NetBSD: ncr.c,v 1.32 2000/06/25 16:00:43 ragge Exp $ */ /*- @@ -127,10 +127,10 @@ static void si_dma_go(void *); 0, sc->ncr_sc.reg, val) struct scsi_adapter si_ops = { - ncr5380_scsi_cmd, /* scsi_cmd() */ - si_minphys, /* scsi_minphys() */ - NULL, /* open_target_lu() */ - NULL, /* close_target_lu() */ + ncr5380_scsi_cmd, /* scsi_cmd() */ + si_minphys, /* scsi_minphys() */ + NULL, /* probe_dev() */ + NULL /* free_dev() */ }; struct scsi_device si_dev = { 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 = { |