diff options
| author | spuligil <spuligil@codeaurora.org> | 2019-01-29 18:01:27 -0800 |
|---|---|---|
| committer | spuligil <spuligil@codeaurora.org> | 2019-01-29 18:01:27 -0800 |
| commit | 42122634a41e1142ddeb6ef479a18266bcbcf276 (patch) | |
| tree | 9634a9a070e0b07655a3fd8bebd0d8c8a04b0bdd | |
| parent | 1f57c63b5fefc75c78136272b4440ea2e4ee615c (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-x | fw/wlan_defs.h | 13 |
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; |
