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/sd.c | |
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/sd.c')
-rw-r--r-- | sys/scsi/sd.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/scsi/sd.c b/sys/scsi/sd.c index 0ce25761f0d..d7152397f64 100644 --- a/sys/scsi/sd.c +++ b/sys/scsi/sd.c @@ -1,4 +1,4 @@ -/* $OpenBSD: sd.c,v 1.113 2006/11/27 23:14:22 beck Exp $ */ +/* $OpenBSD: sd.c,v 1.114 2006/11/28 16:56:50 dlg Exp $ */ /* $NetBSD: sd.c,v 1.111 1997/04/02 02:29:41 mycroft Exp $ */ /*- @@ -149,7 +149,7 @@ sdmatch(parent, match, aux) struct device *parent; void *match, *aux; { - struct scsibus_attach_args *sa = aux; + struct scsi_attach_args *sa = aux; int priority; (void)scsi_inqmatch(sa->sa_inqbuf, @@ -170,7 +170,7 @@ sdattach(parent, self, aux) int error, result; struct sd_softc *sd = (void *)self; struct disk_parms *dp = &sd->params; - struct scsibus_attach_args *sa = aux; + struct scsi_attach_args *sa = aux; struct scsi_link *sc_link = sa->sa_sc_link; SC_DEBUG(sc_link, SDEV_DB2, ("sdattach:\n")); |