|
@@ -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;
|
|
|
}
|