From a2b89950083bdd2ab50fefa356dcd663f39480ad Mon Sep 17 00:00:00 2001 From: David Gwynne Date: Tue, 28 Nov 2006 16:56:51 +0000 Subject: 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@ --- sys/scsi/sd.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'sys/scsi/sd.c') 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")); -- cgit v1.2.3