summaryrefslogtreecommitdiffstats
path: root/sys/sys/disk.h
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/sys/disk.h
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/sys/disk.h')
-rw-r--r--sys/sys/disk.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/sys/disk.h b/sys/sys/disk.h
index c9b1b85..fc098f5 100644
--- a/sys/sys/disk.h
+++ b/sys/sys/disk.h
@@ -71,7 +71,7 @@ struct disk {
#define DISKFLAG_CANDELETE 0x4
dev_t disk_create(int unit, struct disk *disk, int flags, struct cdevsw *cdevsw, void *unused);
-void disk_destroy(dev_t dev);
+void disk_destroy(struct disk *disk);
struct disk *disk_enumerate(struct disk *disk);
void disk_err(struct bio *bp, const char *what, int blkdone, int nl);
OpenPOWER on IntegriCloud