summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorspuligil <spuligil@codeaurora.org>2019-01-29 18:01:27 -0800
committerspuligil <spuligil@codeaurora.org>2019-01-29 18:01:27 -0800
commit42122634a41e1142ddeb6ef479a18266bcbcf276 (patch)
tree9634a9a070e0b07655a3fd8bebd0d8c8a04b0bdd
parent1f57c63b5fefc75c78136272b4440ea2e4ee615c (diff)
fw-api: CL 6396869 - update fw common interface files
Wrap A_RATEMASK def in ifndef CONFIG_MOVE_RC_STRUCT_TO_MACCORE Change-Id: I08cee37f55ce250ac53553b4a82f38243d40d1b9 CRs-Fixed: 2262693
-rwxr-xr-xfw/wlan_defs.h13
1 files changed, 7 insertions, 6 deletions
diff --git a/fw/wlan_defs.h b/fw/wlan_defs.h
index 67ecca5aec79..0d69245361fd 100755
--- a/fw/wlan_defs.h
+++ b/fw/wlan_defs.h
@@ -352,12 +352,13 @@ typedef struct {
* In host-based implementation of the rate-control feature, this struture is used to
* create the payload for HTT message/s from target to host.
*/
-
-#if (NUM_SPATIAL_STREAM > 3)
- #define A_RATEMASK A_UINT64
-#else
- #define A_RATEMASK A_UINT32
-#endif
+#ifndef CONFIG_MOVE_RC_STRUCT_TO_MACCORE
+ #if (NUM_SPATIAL_STREAM > 3)
+ #define A_RATEMASK A_UINT64
+ #else
+ #define A_RATEMASK A_UINT32
+ #endif
+#endif /* CONFIG_MOVE_RC_STRUCT_TO_MACCORE */
typedef A_UINT8 A_RATE;
typedef A_UINT8 A_RATECODE;