diff options
author | mux <mux@FreeBSD.org> | 2004-05-23 16:11:53 +0000 |
---|---|---|
committer | mux <mux@FreeBSD.org> | 2004-05-23 16:11:53 +0000 |
commit | 03028ee82d33d4d68d086392d521e0e7542c317a (patch) | |
tree | 00728f0e85a4f341e4ca55d0b8472e3ecbfc89ea /sys/dev/an | |
parent | 2ddfdb06c3e63be46dcfe7928f4021c5c99660e8 (diff) | |
download | FreeBSD-src-03028ee82d33d4d68d086392d521e0e7542c317a.zip FreeBSD-src-03028ee82d33d4d68d086392d521e0e7542c317a.tar.gz |
We don't need to initialize if_output, ether_ifattach() does it
for us.
Diffstat (limited to 'sys/dev/an')
-rw-r--r-- | sys/dev/an/if_an.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/sys/dev/an/if_an.c b/sys/dev/an/if_an.c index 87a6d61..e1623ec 100644 --- a/sys/dev/an/if_an.c +++ b/sys/dev/an/if_an.c @@ -756,7 +756,6 @@ an_attach(sc, unit, flags) ifp->if_mtu = ETHERMTU; ifp->if_flags = IFF_BROADCAST | IFF_SIMPLEX | IFF_MULTICAST; ifp->if_ioctl = an_ioctl; - ifp->if_output = ether_output; ifp->if_start = an_start; ifp->if_watchdog = an_watchdog; ifp->if_init = an_init; |