Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 328226
b: refs/heads/master
c: 5418b0f
h: refs/heads/master
v: v3
  • Loading branch information
Mohammed Shafi Shajakhan authored and John W. Linville committed Sep 24, 2012
1 parent 606c32d commit 30de3c3
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 6 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 97ed15c7ebfb95f0d23b023fffd23608205f7946
refs/heads/master: 5418b0f0ad389989037d5ed700bcd8b67dbdf018
14 changes: 9 additions & 5 deletions trunk/drivers/net/wireless/ath/ath9k/gpio.c
Original file line number Diff line number Diff line change
Expand Up @@ -320,8 +320,10 @@ void ath9k_btcoex_timer_resume(struct ath_softc *sc)
ath_dbg(ath9k_hw_common(ah), BTCOEX, "Starting btcoex timers\n");

/* make sure duty cycle timer is also stopped when resuming */
if (btcoex->hw_timer_enabled)
if (btcoex->hw_timer_enabled) {
ath9k_gen_timer_stop(sc->sc_ah, btcoex->no_stomp_timer);
btcoex->hw_timer_enabled = false;
}

btcoex->bt_priority_cnt = 0;
btcoex->bt_priority_time = jiffies;
Expand All @@ -342,18 +344,20 @@ void ath9k_btcoex_timer_pause(struct ath_softc *sc)

del_timer_sync(&btcoex->period_timer);

if (btcoex->hw_timer_enabled)
if (btcoex->hw_timer_enabled) {
ath9k_gen_timer_stop(ah, btcoex->no_stomp_timer);

btcoex->hw_timer_enabled = false;
btcoex->hw_timer_enabled = false;
}
}

void ath9k_btcoex_stop_gen_timer(struct ath_softc *sc)
{
struct ath_btcoex *btcoex = &sc->btcoex;

if (btcoex->hw_timer_enabled)
if (btcoex->hw_timer_enabled) {
ath9k_gen_timer_stop(sc->sc_ah, btcoex->no_stomp_timer);
btcoex->hw_timer_enabled = false;
}
}

u16 ath9k_btcoex_aggr_limit(struct ath_softc *sc, u32 max_4ms_framelen)
Expand Down

0 comments on commit 30de3c3

Please sign in to comment.