aboutsummaryrefslogtreecommitdiff
path: root/sys/dev/ath
diff options
context:
space:
mode:
authorSam Leffler <sam@FreeBSD.org>2009-06-02 21:11:26 +0000
committerSam Leffler <sam@FreeBSD.org>2009-06-02 21:11:26 +0000
commitc89b957a1c07ccbe7ed311d180649e330ea65289 (patch)
treeb8270622e959cdc79d3459d3d39a92ee95481512 /sys/dev/ath
parent35f434b2a466e5f875fe8b76c49e718a0dba11c8 (diff)
Notes
Diffstat (limited to 'sys/dev/ath')
-rw-r--r--sys/dev/ath/if_ath.c14
1 files changed, 10 insertions, 4 deletions
diff --git a/sys/dev/ath/if_ath.c b/sys/dev/ath/if_ath.c
index 05930e3ba8b3..5a8542744777 100644
--- a/sys/dev/ath/if_ath.c
+++ b/sys/dev/ath/if_ath.c
@@ -1153,8 +1153,14 @@ ath_vap_delete(struct ieee80211vap *vap)
if (ath_startrecv(sc) != 0)
if_printf(ifp, "%s: unable to restart recv logic\n",
__func__);
- if (sc->sc_beacons)
- ath_beacon_config(sc, NULL);
+ if (sc->sc_beacons) { /* restart beacons */
+#ifdef IEEE80211_SUPPORT_TDMA
+ if (sc->sc_tdma)
+ ath_tdma_config(sc, NULL);
+ else
+#endif
+ ath_beacon_config(sc, NULL);
+ }
ath_hal_intrset(ah, sc->sc_imask);
}
}
@@ -1652,13 +1658,13 @@ ath_reset(struct ifnet *ifp)
* might change as a result.
*/
ath_chan_change(sc, ic->ic_curchan);
- if (sc->sc_beacons) {
+ if (sc->sc_beacons) { /* restart beacons */
#ifdef IEEE80211_SUPPORT_TDMA
if (sc->sc_tdma)
ath_tdma_config(sc, NULL);
else
#endif
- ath_beacon_config(sc, NULL); /* restart beacons */
+ ath_beacon_config(sc, NULL);
}
ath_hal_intrset(ah, sc->sc_imask);