summaryrefslogtreecommitdiffstats
path: root/sys/cam/scsi
diff options
context:
space:
mode:
authorphk <phk@FreeBSD.org>2003-02-21 15:13:26 +0000
committerphk <phk@FreeBSD.org>2003-02-21 15:13:26 +0000
commit9aa946589d32570b5f9072729164e74111ace98a (patch)
tree370edd6c82f8299ccece035af1b2441f573823c0 /sys/cam/scsi
parentf89cdf42be1cbebd7495978fab9d07fe870b2866 (diff)
downloadFreeBSD-src-9aa946589d32570b5f9072729164e74111ace98a.zip
FreeBSD-src-9aa946589d32570b5f9072729164e74111ace98a.tar.gz
NO_GEOM cleanup:
Change the argument to disk_destroy() to be the same struct disk * as disk_create() takes. This enables drivers to ignore the (now) bogus dev_t which disk_create() returns.
Diffstat (limited to 'sys/cam/scsi')
-rw-r--r--sys/cam/scsi/scsi_da.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/cam/scsi/scsi_da.c b/sys/cam/scsi/scsi_da.c
index 2f1338a..77bc449 100644
--- a/sys/cam/scsi/scsi_da.c
+++ b/sys/cam/scsi/scsi_da.c
@@ -1007,7 +1007,7 @@ dacleanup(struct cam_periph *periph)
xpt_print_path(periph->path);
printf("removing device entry\n");
if (softc->dev) {
- disk_destroy(softc->dev);
+ disk_destroy(&softc->disk);
}
free(softc, M_DEVBUF);
}
OpenPOWER on IntegriCloud