ath9k: Remove unused argument tsf from ath9k_hw_rxprocdesc
[pandora-kernel.git] / drivers / net / wireless / ath / ath9k / recv.c
index c0c66e0..a9d8f96 100644 (file)
@@ -761,7 +761,7 @@ static struct ath_buf *ath_get_next_rx_buf(struct ath_softc *sc,
         * on.  All this is necessary because of our use of
         * a self-linked list to avoid rx overruns.
         */
-       ret = ath9k_hw_rxprocdesc(ah, ds, rs, 0);
+       ret = ath9k_hw_rxprocdesc(ah, ds, rs);
        if (ret == -EINPROGRESS) {
                struct ath_rx_status trs;
                struct ath_buf *tbf;
@@ -787,7 +787,7 @@ static struct ath_buf *ath_get_next_rx_buf(struct ath_softc *sc,
                 */
 
                tds = tbf->bf_desc;
-               ret = ath9k_hw_rxprocdesc(ah, tds, &trs, 0);
+               ret = ath9k_hw_rxprocdesc(ah, tds, &trs);
                if (ret == -EINPROGRESS)
                        return NULL;
        }