summaryrefslogtreecommitdiffstats
path: root/sys/i386/isa/wfd.c
diff options
context:
space:
mode:
authormsmith <msmith@FreeBSD.org>1998-01-29 06:42:12 +0000
committermsmith <msmith@FreeBSD.org>1998-01-29 06:42:12 +0000
commit1fa04a0648498b85666ddf172f446ee2b737e805 (patch)
treeffcf2269bf7ede00205250c30c6d5024f820771b /sys/i386/isa/wfd.c
parent342874fb3a430098462eda4d3bcddbd0c7e8c6a1 (diff)
downloadFreeBSD-src-1fa04a0648498b85666ddf172f446ee2b737e805.zip
FreeBSD-src-1fa04a0648498b85666ddf172f446ee2b737e805.tar.gz
Correct usage of unit to t->lun. This fixes the DEVFS case and the
"buggy Zip" message. Suggested by: Pedro A M Vazquez <vazquez@IQM.Unicamp.BR>
Diffstat (limited to 'sys/i386/isa/wfd.c')
-rw-r--r--sys/i386/isa/wfd.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/sys/i386/isa/wfd.c b/sys/i386/isa/wfd.c
index 264b904..00fa0e8 100644
--- a/sys/i386/isa/wfd.c
+++ b/sys/i386/isa/wfd.c
@@ -23,7 +23,7 @@
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*
- * $Id: wfd.c,v 1.2 1998/01/16 22:43:33 pst Exp $
+ * $Id: wfd.c,v 1.3 1998/01/27 16:49:35 msmith Exp $
*/
/*
@@ -246,7 +246,7 @@ wfdattach (struct atapi *ata, int unit, struct atapi_params *ap, int debug)
*/
if (!strcmp(ap->model, "IOMEGA ZIP 100 ATAPI")) {
printf("wfd%d: buggy Zip drive, 64-block transfer limit set\n",
- unit);
+ t->lun);
t->maxblks = 64;
} else {
t->maxblks = 0; /* no limit */
@@ -255,13 +255,13 @@ wfdattach (struct atapi *ata, int unit, struct atapi_params *ap, int debug)
#ifdef DEVFS
- mynor = dkmakeminor(unit, WHOLE_DISK_SLICE, RAW_PART);
+ mynor = dkmakeminor(t->lun, WHOLE_DISK_SLICE, RAW_PART);
t->bdevs = devfs_add_devswf(&wfd_bdevsw, mynor,
DV_BLK, UID_ROOT, GID_OPERATOR, 0640,
- "wfd%d", unit);
+ "wfd%d", t->lun);
t->cdevs = devfs_add_devswf(&wfd_cdevsw, mynor,
DV_CHR, UID_ROOT, GID_OPERATOR, 0640,
- "rwfd%d", unit);
+ "rwfd%d", t->lun);
#endif /* DEVFS */
return (1);
}
OpenPOWER on IntegriCloud