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/bxe | |
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/bxe')
-rw-r--r-- | sys/dev/bxe/if_bxe.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/sys/dev/bxe/if_bxe.c b/sys/dev/bxe/if_bxe.c index 5f7f6a6..1c5398a 100644 --- a/sys/dev/bxe/if_bxe.c +++ b/sys/dev/bxe/if_bxe.c @@ -2136,7 +2136,6 @@ bxe_attach(device_t dev) #endif ifp->if_init = bxe_init; - ifp->if_mtu = ETHERMTU; ifp->if_hwassist = BXE_IF_HWASSIST; ifp->if_capabilities = BXE_IF_CAPABILITIES; /* TPA not enabled by default. */ |