diff options
author | phk <phk@FreeBSD.org> | 2003-02-21 15:13:26 +0000 |
---|---|---|
committer | phk <phk@FreeBSD.org> | 2003-02-21 15:13:26 +0000 |
commit | 9aa946589d32570b5f9072729164e74111ace98a (patch) | |
tree | 370edd6c82f8299ccece035af1b2441f573823c0 /sys/dev/mlx | |
parent | f89cdf42be1cbebd7495978fab9d07fe870b2866 (diff) | |
download | FreeBSD-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/dev/mlx')
-rw-r--r-- | sys/dev/mlx/mlx_disk.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/dev/mlx/mlx_disk.c b/sys/dev/mlx/mlx_disk.c index a5ff92d..6af106f 100644 --- a/sys/dev/mlx/mlx_disk.c +++ b/sys/dev/mlx/mlx_disk.c @@ -275,7 +275,7 @@ mlxd_detach(device_t dev) debug_called(1); devstat_remove_entry(&sc->mlxd_stats); - disk_destroy(sc->mlxd_dev_t); + disk_destroy(&sc->mlxd_disk); return(0); } |