diff options
author | Ted Unangst <tedu@cvs.openbsd.org> | 2015-12-05 10:07:56 +0000 |
---|---|---|
committer | Ted Unangst <tedu@cvs.openbsd.org> | 2015-12-05 10:07:56 +0000 |
commit | cdb1158a8939856a20359701c16f46c4a79f9a56 (patch) | |
tree | cbc5495a042615ba62653014bf5dda90be3a8d56 /sys/net/bpf.c | |
parent | 202c3e41936b70d8785e5596608e54a782e5ea1c (diff) |
remove old lint annotations
Diffstat (limited to 'sys/net/bpf.c')
-rw-r--r-- | sys/net/bpf.c | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/sys/net/bpf.c b/sys/net/bpf.c index 3bc37dd3bd2..86f5f6db879 100644 --- a/sys/net/bpf.c +++ b/sys/net/bpf.c @@ -1,4 +1,4 @@ -/* $OpenBSD: bpf.c,v 1.130 2015/10/07 08:41:01 mpi Exp $ */ +/* $OpenBSD: bpf.c,v 1.131 2015/12/05 10:07:55 tedu Exp $ */ /* $NetBSD: bpf.c,v 1.33 1997/02/21 23:59:35 thorpej Exp $ */ /* @@ -318,7 +318,6 @@ bpf_detachd(struct bpf_d *d) d->bd_bif = NULL; } -/* ARGSUSED */ void bpfilterattach(int n) { @@ -329,7 +328,6 @@ bpfilterattach(int n) * Open ethernet device. Returns ENXIO for illegal minor device number, * EBUSY if file is open by another process. */ -/* ARGSUSED */ int bpfopen(dev_t dev, int flag, int mode, struct proc *p) { @@ -352,7 +350,6 @@ bpfopen(dev_t dev, int flag, int mode, struct proc *p) * Close the descriptor by detaching it from its interface, * deallocating its buffers, and marking it free. */ -/* ARGSUSED */ int bpfclose(dev_t dev, int flag, int mode, struct proc *p) { @@ -607,7 +604,6 @@ bpf_reset_d(struct bpf_d *d) * BIOCGHDRCMPLT Get "header already complete" flag * BIOCSHDRCMPLT Set "header already complete" flag */ -/* ARGSUSED */ int bpfioctl(dev_t dev, u_long cmd, caddr_t addr, int flag, struct proc *p) { |