qcacmn: Enable Bus bundle for both TX and RX

Because of the sequence of macro defination, the HTX bundle is
not enabled at all. This fix made the macro defination into the
correct sequence.

CRs-Fixed: 2070642
Change-Id: Idc62b091057da9873874f54f09ca8b76d3658516
This commit is contained in:
Chris Guo
2017-07-03 21:10:59 +08:00
committed by snandini
parent dcb5226baf
commit 33d5173722

View File

@@ -257,19 +257,6 @@ typedef struct _HTC_TARGET {
uint8_t wmi_ep_count; uint8_t wmi_ep_count;
} HTC_TARGET; } HTC_TARGET;
#if defined ENABLE_BUNDLE_TX
#define HTC_TX_BUNDLE_ENABLED(target) (target->MaxMsgsPerHTCBundle > 1)
#else
#define HTC_TX_BUNDLE_ENABLED(target) 0
#endif
#if defined ENABLE_BUNDLE_RX
#define HTC_RX_BUNDLE_ENABLED(target) (target->MaxMsgsPerHTCBundle > 1)
#else
#define HTC_RX_BUNDLE_ENABLED(target) 0
#endif
#define HTC_ENABLE_BUNDLE(target) (target->MaxMsgsPerHTCBundle > 1)
#ifdef RX_SG_SUPPORT #ifdef RX_SG_SUPPORT
#define RESET_RX_SG_CONFIG(_target) \ #define RESET_RX_SG_CONFIG(_target) \
@@ -405,4 +392,19 @@ htc_send_complete_check(HTC_ENDPOINT *pEndpoint, int force) {
#define ENABLE_BUNDLE_RX 1 #define ENABLE_BUNDLE_RX 1
#endif #endif
#endif /*defined(HIF_SDIO) || defined(HIF_USB)*/ #endif /*defined(HIF_SDIO) || defined(HIF_USB)*/
#if defined ENABLE_BUNDLE_TX
#define HTC_TX_BUNDLE_ENABLED(target) (target->MaxMsgsPerHTCBundle > 1)
#else
#define HTC_TX_BUNDLE_ENABLED(target) 0
#endif
#if defined ENABLE_BUNDLE_RX
#define HTC_RX_BUNDLE_ENABLED(target) (target->MaxMsgsPerHTCBundle > 1)
#else
#define HTC_RX_BUNDLE_ENABLED(target) 0
#endif
#define HTC_ENABLE_BUNDLE(target) (target->MaxMsgsPerHTCBundle > 1)
#endif /* !_HTC_HOST_INTERNAL_H_ */ #endif /* !_HTC_HOST_INTERNAL_H_ */