summaryrefslogtreecommitdiff
path: root/sys/dev/vn
diff options
context:
space:
mode:
authorPoul-Henning Kamp <phk@FreeBSD.org>1995-12-08 23:23:00 +0000
committerPoul-Henning Kamp <phk@FreeBSD.org>1995-12-08 23:23:00 +0000
commitd2f265fab89fec2b4d450a74eea4489401c61b1a (patch)
tree0408fdddf8ea8eeab5dc960ead9a7c96a2e301bd /sys/dev/vn
parent04228afa84a08b15d6e0c92e80717a7e04ef83bc (diff)
Notes
Diffstat (limited to 'sys/dev/vn')
-rw-r--r--sys/dev/vn/vn.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/dev/vn/vn.c b/sys/dev/vn/vn.c
index 68ba76096abd..54510e3eaaec 100644
--- a/sys/dev/vn/vn.c
+++ b/sys/dev/vn/vn.c
@@ -102,11 +102,11 @@ static d_strategy_t vnstrategy;
#define CDEV_MAJOR 43
#define BDEV_MAJOR 15
extern struct cdevsw vn_cdevsw;
-struct bdevsw vn_bdevsw =
+static struct bdevsw vn_bdevsw =
{ vnopen, vnclose, vnstrategy, vnioctl, /*15*/
vndump, vnsize, 0, "vn", &vn_cdevsw, -1 };
-struct cdevsw vn_cdevsw =
+static struct cdevsw vn_cdevsw =
{ vnopen, vnclose, rawread, rawwrite, /*43*/
vnioctl, nostop, nullreset, nodevtotty,/* vn */
seltrue, nommap, vnstrategy, "vn",