diff options
author | Maxime Henrion <mux@FreeBSD.org> | 2004-03-11 14:04:59 +0000 |
---|---|---|
committer | Maxime Henrion <mux@FreeBSD.org> | 2004-03-11 14:04:59 +0000 |
commit | aa0444ecdbf59c3502564047465792382a58d3e7 (patch) | |
tree | 31dc0a2e37007fcadb8bebe1d0f8c3065ef89339 /sys/pci/if_rl.c | |
parent | a67ef0a77a6bf036275ca4365d251d34b92cfa78 (diff) | |
download | src-aa0444ecdbf59c3502564047465792382a58d3e7.tar.gz src-aa0444ecdbf59c3502564047465792382a58d3e7.zip |
Stop setting ifp->if_output to ether_output() since ether_ifattach()
does it for us already.
Notes
Notes:
svn path=/head/; revision=126847
Diffstat (limited to 'sys/pci/if_rl.c')
-rw-r--r-- | sys/pci/if_rl.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/sys/pci/if_rl.c b/sys/pci/if_rl.c index 606bf3488695..1c4d98af1028 100644 --- a/sys/pci/if_rl.c +++ b/sys/pci/if_rl.c @@ -1097,7 +1097,6 @@ rl_attach(dev) ifp->if_mtu = ETHERMTU; ifp->if_flags = IFF_BROADCAST | IFF_SIMPLEX | IFF_MULTICAST; ifp->if_ioctl = rl_ioctl; - ifp->if_output = ether_output; ifp->if_start = rl_start; ifp->if_watchdog = rl_watchdog; ifp->if_init = rl_init; |