aboutsummaryrefslogtreecommitdiff
path: root/sys/dev/ie/if_ie.c
diff options
context:
space:
mode:
authorArchie Cobbs <archie@FreeBSD.org>2000-07-13 22:54:34 +0000
committerArchie Cobbs <archie@FreeBSD.org>2000-07-13 22:54:34 +0000
commit21b8ebd926583116aa2cfe13371539035c4c8249 (patch)
tree9138788c579d4f5d51cd1a679899f325a789cb7e /sys/dev/ie/if_ie.c
parent4a19005c4897cb2bddd9f1d0a184e503c15e23bf (diff)
downloadsrc-21b8ebd926583116aa2cfe13371539035c4c8249.tar.gz
src-21b8ebd926583116aa2cfe13371539035c4c8249.zip
Make all Ethernet drivers attach using ether_ifattach() and detach using
ether_ifdetach(). The former consolidates the operations of if_attach(), ng_ether_attach(), and bpfattach(). The latter consolidates the corresponding detach operations. Reviewed by: julian, freebsd-net
Notes
Notes: svn path=/head/; revision=63090
Diffstat (limited to 'sys/dev/ie/if_ie.c')
-rw-r--r--sys/dev/ie/if_ie.c5
1 files changed, 1 insertions, 4 deletions
diff --git a/sys/dev/ie/if_ie.c b/sys/dev/ie/if_ie.c
index c9ce52dfc08f..636c634a203b 100644
--- a/sys/dev/ie/if_ie.c
+++ b/sys/dev/ie/if_ie.c
@@ -792,10 +792,7 @@ ieattach(struct isa_device *dvp)
EVENTHANDLER_REGISTER(shutdown_post_sync, ee16_shutdown,
ie, SHUTDOWN_PRI_DEFAULT);
- bpfattach(ifp, DLT_EN10MB, sizeof(struct ether_header));
-
- if_attach(ifp);
- ether_ifattach(ifp);
+ ether_ifattach(ifp, ETHER_BPF_SUPPORTED);
return (1);
}