diff options
author | David Gwynne <dlg@cvs.openbsd.org> | 2006-11-28 16:56:51 +0000 |
---|---|---|
committer | David Gwynne <dlg@cvs.openbsd.org> | 2006-11-28 16:56:51 +0000 |
commit | a2b89950083bdd2ab50fefa356dcd663f39480ad (patch) | |
tree | 44560b603989c7bab42f3165f1d491f5ff3a8083 /sys/scsi/ssvar.h | |
parent | fcec0b3ab3f61e28b16f2e7257a67da02436784f (diff) |
rename scsibus_attach_args to scsi_attach_args. this can help avoid
confusing when trying to attach scsibus to a hba, since it is really meant
for attaching scsi devices to scsibus.
ok deraadt@ marco@
Diffstat (limited to 'sys/scsi/ssvar.h')
-rw-r--r-- | sys/scsi/ssvar.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/scsi/ssvar.h b/sys/scsi/ssvar.h index a1de14f3173..be9f3fbedbb 100644 --- a/sys/scsi/ssvar.h +++ b/sys/scsi/ssvar.h @@ -1,4 +1,4 @@ -/* $OpenBSD: ssvar.h,v 1.10 2003/05/18 16:06:35 mickey Exp $ */ +/* $OpenBSD: ssvar.h,v 1.11 2006/11/28 16:56:50 dlg Exp $ */ /* $NetBSD: ssvar.h,v 1.2 1996/03/30 21:47:11 christos Exp $ */ /* @@ -75,5 +75,5 @@ struct ss_softc { /* * define the special attach routines if configured */ -void mustek_attach(struct ss_softc *, struct scsibus_attach_args *); -void scanjet_attach(struct ss_softc *, struct scsibus_attach_args *); +void mustek_attach(struct ss_softc *, struct scsi_attach_args *); +void scanjet_attach(struct ss_softc *, struct scsi_attach_args *); |