use ah_procRxDescFast directly
authorOleksij Rempel <linux@rempel-privat.de>
Sat, 11 May 2013 10:46:19 +0000 (12:46 +0200)
committerOleksij Rempel <linux@rempel-privat.de>
Sat, 11 May 2013 14:10:09 +0000 (16:10 +0200)
Signed-off-by: Oleksij Rempel <linux@rempel-privat.de>
target_firmware/wlan/if_ath.c
target_firmware/wlan/if_athvar.h

index 7dabb5f1e89717dc94f7ad5c10cf8cb92950be94..6186f670f0f77de6407fb393fbcc91419587513d 100755 (executable)
@@ -386,7 +386,7 @@ static void ath_uapsd_processtriggers(struct ath_softc_tgt *sc)
                        continue;
                }
 
-               retval = ath_hal_rxprocdescfast(ah, ds, ds->ds_daddr,
+               retval = ah->ah_procRxDescFast(ah, ds, ds->ds_daddr,
                                                PA2DESC(sc, ds->ds_link), &bf->bf_rx_status);
                if (HAL_EINPROGRESS == retval) {
                        break;
index 82792f94fedb80588ab2052d3154b5c2e1cdab28..07ceac39784d96acf7e1c46c186cf423ad084ef0 100755 (executable)
@@ -489,8 +489,6 @@ typedef enum {
 
 a_uint8_t ath_get_minrateidx(struct ath_softc_tgt *sc, struct ath_vap_target *avp);
 
-#define ath_hal_rxprocdescfast(_ah, _ds, _dspa, _dsnext, _rx_stats) \
-    ((*(_ah)->ah_procRxDescFast)((_ah), (_ds), (_dspa), (_dsnext), (_rx_stats)))
 #define ath_hal_set11n_virtualmorefrag(_ah, _ds, _vmf) \
     ((*(_ah)->ah_set11nVirtualMoreFrag)(_ah, _ds, _vmf))
 #define ath_hal_setuptxdesc(_ah, _ds, _plen, _hlen, _atype, _txpow, \