summaryrefslogtreecommitdiffstats
path: root/sys/geom/geom_ctl.c
diff options
context:
space:
mode:
authorphk <phk@FreeBSD.org>2003-09-27 12:01:01 +0000
committerphk <phk@FreeBSD.org>2003-09-27 12:01:01 +0000
commit7099deadda891e55e6cf9b433659c61126568e93 (patch)
treeb97e31a4fdc3440a666206b469045b517017d25e /sys/geom/geom_ctl.c
parentc21d189c3f13ce3c60be9f7e4b2d8fc554970d12 (diff)
downloadFreeBSD-src-7099deadda891e55e6cf9b433659c61126568e93.zip
FreeBSD-src-7099deadda891e55e6cf9b433659c61126568e93.tar.gz
The present defaults for the open and close for device drivers which
provide no methods does not make any sense, and is not used by any driver. It is a pretty hard to come up with even a theoretical concept of a device driver which would always fail open and close with ENODEV. Change the defaults to be nullopen() and nullclose() which simply does nothing. Remove explicit initializations to these from the drivers which already used them.
Diffstat (limited to 'sys/geom/geom_ctl.c')
-rw-r--r--sys/geom/geom_ctl.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/sys/geom/geom_ctl.c b/sys/geom/geom_ctl.c
index b9f2a92..43a0313 100644
--- a/sys/geom/geom_ctl.c
+++ b/sys/geom/geom_ctl.c
@@ -65,8 +65,6 @@ __FBSDID("$FreeBSD$");
static d_ioctl_t g_ctl_ioctl;
static struct cdevsw g_ctl_cdevsw = {
- .d_open = nullopen,
- .d_close = nullclose,
.d_ioctl = g_ctl_ioctl,
.d_name = "g_ctl",
};
OpenPOWER on IntegriCloud