diff options
author | sam <sam@FreeBSD.org> | 2008-04-30 17:00:32 +0000 |
---|---|---|
committer | sam <sam@FreeBSD.org> | 2008-04-30 17:00:32 +0000 |
commit | 2961ed6008efd01db11c15fab3f68aff59a0a6d7 (patch) | |
tree | e3a5906d3ee0ea91668f9a170b5bc17c6f9af64e | |
parent | 6be055016bd6756eba611bafac59b31c3620e47f (diff) | |
download | FreeBSD-src-2961ed6008efd01db11c15fab3f68aff59a0a6d7.zip FreeBSD-src-2961ed6008efd01db11c15fab3f68aff59a0a6d7.tar.gz |
remove old code to handle mcast address changes; this is all done through
net80211 and pushed into the driver through non-ioctl callbacks
-rw-r--r-- | sys/dev/ath/if_ath.c | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/sys/dev/ath/if_ath.c b/sys/dev/ath/if_ath.c index db2ce87..8caed20 100644 --- a/sys/dev/ath/if_ath.c +++ b/sys/dev/ath/if_ath.c @@ -6302,16 +6302,6 @@ ath_ioctl(struct ifnet *ifp, u_long cmd, caddr_t data) } else ath_stop_locked(ifp); break; - case SIOCADDMULTI: - case SIOCDELMULTI: - /* - * The upper layer has already installed/removed - * the multicast address(es), just recalculate the - * multicast filter for the card. - */ - if (ifp->if_drv_flags & IFF_DRV_RUNNING) - ath_mode_init(sc); - break; case SIOCGIFMEDIA: case SIOCSIFMEDIA: error = ifmedia_ioctl(ifp, ifr, &ic->ic_media, cmd); |