build fix: ath_hal_filltxdesc should use ath_tx_desc
authorOleksij Rempel <linux@rempel-privat.de>
Sun, 31 Mar 2013 14:24:57 +0000 (16:24 +0200)
committerOleksij Rempel <linux@rempel-privat.de>
Sun, 31 Mar 2013 18:05:34 +0000 (20:05 +0200)
Signed-off-by: Oleksij Rempel <linux@rempel-privat.de>
target_firmware/wlan/ah.h
target_firmware/wlan/ar5416_hw.c
target_firmware/wlan/ar5416desc.h

index 714df752abac2412c066a58063c40f50de731edb..2a2efc64be6faac099dbd40a1b41379e58761499 100755 (executable)
@@ -437,9 +437,9 @@ struct ath_hal
                                            a_uint32_t rtsctsRate, a_uint32_t rtsctsDuration,
                                            a_uint32_t compicvLen, a_uint32_t compivLen,
                                            a_uint32_t comp);
-       HAL_BOOL  __ahdecl(*ah_fillTxDesc)(struct ath_hal *, struct ath_desc *,
+       HAL_BOOL  __ahdecl(*ah_fillTxDesc)(struct ath_hal *, struct ath_tx_desc *,
                                           a_uint32_t segLen, HAL_BOOL firstSeg,
-                                          HAL_BOOL lastSeg, const struct ath_desc *);
+                                          HAL_BOOL lastSeg, const struct ath_tx_desc *);
        HAL_BOOL  __ahdecl (*ah_fillKeyTxDesc) (struct ath_hal *, struct ath_desc *, HAL_KEY_TYPE);
        HAL_STATUS __ahdecl(*ah_procTxDesc)(struct ath_hal *, struct ath_desc*);
        void            __ahdecl(*ah_getTxIntrQueue)(struct ath_hal *, a_uint32_t *);
index c0ae4181ac0d3fa409177331cd994340d5912234..20ecbce3b2185db130c6413eb454fccd216b567a 100644 (file)
@@ -815,9 +815,9 @@ HAL_BOOL ar5416SetupTxDesc_20(struct ath_hal *ah, struct ath_desc *ds,
 #undef RTSCTS
 }
 
-HAL_BOOL ar5416FillTxDesc_20(struct ath_hal *ah, struct ath_desc *ds,
+HAL_BOOL ar5416FillTxDesc_20(struct ath_hal *ah, struct ath_tx_desc *ds,
                             a_uint32_t segLen, HAL_BOOL firstSeg, HAL_BOOL lastSeg,
-                            const struct ath_desc *ds0)
+                            const struct ath_tx_desc *ds0)
 {
         struct ar5416_desc *ads = AR5416DESC(ds);
 
index ce279cf63bb5e2a2a0ac50f2553e674fdd263069..5d8a81a9c9eb67a2a2ed6ceb0a2b77cbd2d16c29 100755 (executable)
@@ -468,9 +468,9 @@ extern  HAL_BOOL ar5416SetupTxDesc_20(struct ath_hal *ah, struct ath_desc *ds,
         a_uint32_t keyIx, a_uint32_t antMode, a_uint32_t flags,
         a_uint32_t rtsctsRate, a_uint32_t rtsctsDuration,
         a_uint32_t compicvLen, a_uint32_t compivLen, a_uint32_t comp);
-extern  HAL_BOOL ar5416FillTxDesc_20(struct ath_hal *ah, struct ath_desc *ds,
+extern  HAL_BOOL ar5416FillTxDesc_20(struct ath_hal *ah, struct ath_tx_desc *ds,
         a_uint32_t segLen, HAL_BOOL firstSeg, HAL_BOOL lastSeg,
-        const struct ath_desc *ds0);
+        const struct ath_tx_desc *ds0);
 extern  HAL_BOOL ar5416FillKeyTxDesc_20(struct ath_hal *ah, struct ath_desc *,HAL_KEY_TYPE);
 extern  HAL_STATUS ar5416ProcTxDesc_20(struct ath_hal *ah, struct ath_desc *);