Merge branch 'master' of git://git.kernel.org/pub/scm/linux/kernel/git/linville/wirel...
[cascardo/linux.git] / drivers / net / wireless / ath / ath9k / xmit.c
index c8fc180..3182408 100644 (file)
@@ -1964,7 +1964,7 @@ int ath_tx_start(struct ieee80211_hw *hw, struct sk_buff *skb,
        if (txq == sc->tx.txq_map[q] &&
            ++txq->pending_frames > ATH_MAX_QDEPTH && !txq->stopped) {
                ieee80211_stop_queue(sc->hw, q);
-               txq->stopped = 1;
+               txq->stopped = true;
        }
 
        ath_tx_start_dma(sc, skb, txctl);
@@ -2020,7 +2020,7 @@ static void ath_tx_complete(struct ath_softc *sc, struct sk_buff *skb,
 
                if (txq->stopped && txq->pending_frames < ATH_MAX_QDEPTH) {
                        ieee80211_wake_queue(sc->hw, q);
-                       txq->stopped = 0;
+                       txq->stopped = false;
                }
        }