use ah_stopDmaReceive directly
[open-ath9k-htc-firmware.git] / target_firmware / wlan / if_ath.c
index bdadbf00de0e64c94b9b2a66aeb9fa17b5185bd5..a024574d957f44faaf6014cd98582f7481e4cc65 100755 (executable)
@@ -271,7 +271,7 @@ static a_int32_t ath_rxdesc_init(struct ath_softc_tgt *sc, struct ath_rx_desc *d
                            0);
 
        if (sc->sc_rxlink == NULL) {
-               ath_hal_putrxbuf(ah, ds->ds_daddr);
+               ah->ah_setRxDP(ah, ds->ds_daddr);
        }
        else {
                *sc->sc_rxlink = ds->ds_daddr;
@@ -472,7 +472,7 @@ static a_int32_t ath_startrecv(struct ath_softc_tgt *sc)
        }
 
        ds = asf_tailq_first(&sc->sc_rxdesc);
-       ath_hal_putrxbuf(ah, ds->ds_daddr);
+       ah->ah_setRxDP(ah, ds->ds_daddr);
 
        return 0;
 }
@@ -1618,8 +1618,8 @@ static void ath_stoprecv_tgt(void *Context, A_UINT16 Command,
        struct ath_hal *ah = sc->sc_ah;
 
        ath_hal_stoppcurecv(ah);
-       ath_hal_setrxfilter(ah, 0);
-       ath_hal_stopdmarecv(ah);
+       ah->ah_setRxFilter(ah, 0);
+       ah->ah_stopDmaReceive(ah);
 
        sc->sc_rxlink = NULL;
        wmi_cmd_rsp(sc->tgt_wmi_handle, Command, SeqNo, NULL, 0);