diff options
author | Jonathan Gray <jsg@cvs.openbsd.org> | 2010-08-27 17:08:02 +0000 |
---|---|---|
committer | Jonathan Gray <jsg@cvs.openbsd.org> | 2010-08-27 17:08:02 +0000 |
commit | e8ad753752758c2cfa85f8c08dd41f982b096c56 (patch) | |
tree | 8bb7235dfdb22a9f3ab77b7a8eb911512da40831 /sys/net/if.h | |
parent | c766b87a799f8e51a14cd8938bbceb1dfe2b3d80 (diff) |
remove the unused if_init callback in struct ifnet
ok deraadt@ henning@ claudio@
Diffstat (limited to 'sys/net/if.h')
-rw-r--r-- | sys/net/if.h | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/sys/net/if.h b/sys/net/if.h index b1d880376b8..f28e6f397f5 100644 --- a/sys/net/if.h +++ b/sys/net/if.h @@ -1,4 +1,4 @@ -/* $OpenBSD: if.h,v 1.117 2010/06/26 19:49:54 claudio Exp $ */ +/* $OpenBSD: if.h,v 1.118 2010/08/27 17:08:01 jsg Exp $ */ /* $NetBSD: if.h,v 1.23 1996/05/07 02:40:27 thorpej Exp $ */ /* @@ -274,8 +274,6 @@ struct ifnet { /* and the entries */ void (*if_start)(struct ifnet *); /* ioctl routine */ int (*if_ioctl)(struct ifnet *, u_long, caddr_t); - /* init routine */ - int (*if_init)(struct ifnet *); /* stop routine */ int (*if_stop)(struct ifnet *, int); /* timer routine */ |