aboutsummaryrefslogtreecommitdiff
path: root/sys/dev/md
diff options
context:
space:
mode:
authorPoul-Henning Kamp <phk@FreeBSD.org>1999-09-25 18:24:47 +0000
committerPoul-Henning Kamp <phk@FreeBSD.org>1999-09-25 18:24:47 +0000
commitd6a0e38a1bffb551c7a3159a072a0ac3b30abccb (patch)
tree6fd058e379c30c9846c02d23271af0842114b5d1 /sys/dev/md
parent784733e9ecb7b3cbb1655b9026841f7bcbcba164 (diff)
Notes
Diffstat (limited to 'sys/dev/md')
-rw-r--r--sys/dev/md/md.c5
1 files changed, 0 insertions, 5 deletions
diff --git a/sys/dev/md/md.c b/sys/dev/md/md.c
index d25d364a07da..e7f46f542583 100644
--- a/sys/dev/md/md.c
+++ b/sys/dev/md/md.c
@@ -44,19 +44,14 @@ static struct cdevsw md_cdevsw = {
/* read */ physread,
/* write */ physwrite,
/* ioctl */ mdioctl,
- /* stop */ nostop,
- /* reset */ noreset,
- /* devtotty */ nodevtotty,
/* poll */ nopoll,
/* mmap */ nommap,
/* strategy */ mdstrategy,
/* name */ "md",
- /* parms */ noparms,
/* maj */ CDEV_MAJOR,
/* dump */ nodump,
/* psize */ nopsize,
/* flags */ D_DISK | D_CANFREE,
- /* maxio */ 0,
/* bmaj */ BDEV_MAJOR
};
static struct cdevsw mddisk_cdevsw;