summaryrefslogtreecommitdiffstats
path: root/sys/i386
diff options
context:
space:
mode:
Diffstat (limited to 'sys/i386')
-rw-r--r--sys/i386/isa/wfd.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/sys/i386/isa/wfd.c b/sys/i386/isa/wfd.c
index 4a19d79..045d1d8 100644
--- a/sys/i386/isa/wfd.c
+++ b/sys/i386/isa/wfd.c
@@ -192,7 +192,7 @@ wfdattach (struct atapi *ata, int unit, struct atapi_params *ap, int debug)
bufq_init(&t->buf_queue);
t->ata = ata;
t->unit = unit;
- lun = t->lun = wfdnlun++;
+ lun = t->lun = wfdnlun;
t->param = ap;
t->flags = F_MEDIA_CHANGED;
t->refcnt = 0;
@@ -251,10 +251,11 @@ wfdattach (struct atapi *ata, int unit, struct atapi_params *ap, int debug)
* Export the drive to the devstat interface.
*/
devstat_add_entry(&t->device_stats, "wfd",
- wfdnlun, t->cap.sector_size,
+ t->lun, t->cap.sector_size,
DEVSTAT_NO_ORDERED_TAGS,
DEVSTAT_TYPE_FLOPPY | DEVSTAT_TYPE_IF_IDE,
DEVSTAT_PRIORITY_WFD);
+ wfdnlun++;
return (1);
}
OpenPOWER on IntegriCloud