diff options
Diffstat (limited to 'sys/net')
-rw-r--r-- | sys/net/bpf.c | 5 | ||||
-rw-r--r-- | sys/net/if_tun.c | 5 |
2 files changed, 0 insertions, 10 deletions
diff --git a/sys/net/bpf.c b/sys/net/bpf.c index 0e73b83..6876ab2 100644 --- a/sys/net/bpf.c +++ b/sys/net/bpf.c @@ -140,19 +140,14 @@ static struct cdevsw bpf_cdevsw = { /* read */ bpfread, /* write */ bpfwrite, /* ioctl */ bpfioctl, - /* stop */ nostop, - /* reset */ noreset, - /* devtotty */ nodevtotty, /* poll */ bpfpoll, /* mmap */ nommap, /* strategy */ nostrategy, /* name */ "bpf", - /* parms */ noparms, /* maj */ CDEV_MAJOR, /* dump */ nodump, /* psize */ nopsize, /* flags */ 0, - /* maxio */ 0, /* bmaj */ -1 }; diff --git a/sys/net/if_tun.c b/sys/net/if_tun.c index 7617968..ab71571 100644 --- a/sys/net/if_tun.c +++ b/sys/net/if_tun.c @@ -87,19 +87,14 @@ static struct cdevsw tun_cdevsw = { /* read */ tunread, /* write */ tunwrite, /* ioctl */ tunioctl, - /* stop */ nostop, - /* reset */ noreset, - /* devtotty */ nodevtotty, /* poll */ tunpoll, /* mmap */ nommap, /* strategy */ nostrategy, /* name */ "tun", - /* parms */ noparms, /* maj */ CDEV_MAJOR, /* dump */ nodump, /* psize */ nopsize, /* flags */ 0, - /* maxio */ 0, /* bmaj */ -1 }; |