diff options
author | kevlo <kevlo@FreeBSD.org> | 2012-01-07 09:41:57 +0000 |
---|---|---|
committer | kevlo <kevlo@FreeBSD.org> | 2012-01-07 09:41:57 +0000 |
commit | 41b065b8d46fe265392cdb2ddde288e6685e6a17 (patch) | |
tree | 144bbe0cda0a389ee52d42a4e4d5d4f45b59c3cd /sys/dev/an | |
parent | 6ccd11eb82acf6a486f18617bb71ce7a4e6a3a50 (diff) | |
download | FreeBSD-src-41b065b8d46fe265392cdb2ddde288e6685e6a17.zip FreeBSD-src-41b065b8d46fe265392cdb2ddde288e6685e6a17.tar.gz |
ether_ifattach() sets if_mtu to ETHERMTU, don't bother set it again
Reviewed by: yongari
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 aa7c918..5d90850 100644 --- a/sys/dev/an/if_an.c +++ b/sys/dev/an/if_an.c @@ -761,7 +761,6 @@ an_attach(struct an_softc *sc, int flags) ifp->if_softc = sc; if_initname(ifp, device_get_name(sc->an_dev), device_get_unit(sc->an_dev)); - ifp->if_mtu = ETHERMTU; ifp->if_flags = IFF_BROADCAST | IFF_SIMPLEX | IFF_MULTICAST; ifp->if_ioctl = an_ioctl; ifp->if_start = an_start; |