diff options
author | David Gwynne <dlg@cvs.openbsd.org> | 2015-12-08 10:14:59 +0000 |
---|---|---|
committer | David Gwynne <dlg@cvs.openbsd.org> | 2015-12-08 10:14:59 +0000 |
commit | 8e919786e8cf0e1b84658a6293ffcc73c0409db0 (patch) | |
tree | 6354c0501ec3c7ca5110b12c7a7fd9d1faf54aeb /sys/net | |
parent | 938ec4667fc46b7b20ad5223059a5381acfd7732 (diff) |
if_stop is unused, so kill it.
ok mpi@
Diffstat (limited to 'sys/net')
-rw-r--r-- | sys/net/if_var.h | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/sys/net/if_var.h b/sys/net/if_var.h index 631e4cd9f21..c0bd1ef7459 100644 --- a/sys/net/if_var.h +++ b/sys/net/if_var.h @@ -1,4 +1,4 @@ -/* $OpenBSD: if_var.h,v 1.65 2015/12/08 10:06:12 dlg Exp $ */ +/* $OpenBSD: if_var.h,v 1.66 2015/12/08 10:14:58 dlg Exp $ */ /* $NetBSD: if.h,v 1.23 1996/05/07 02:40:27 thorpej Exp $ */ /* @@ -149,8 +149,6 @@ struct ifnet { /* and the entries */ void (*if_start)(struct ifnet *); /* ioctl routine */ int (*if_ioctl)(struct ifnet *, u_long, caddr_t); - /* stop routine */ - int (*if_stop)(struct ifnet *, int); /* timer routine */ void (*if_watchdog)(struct ifnet *); int (*if_wol)(struct ifnet *, int); |