qcacld-3.0: Correcting the TSInfo structure size according to the Spec

According to spec the TSinfo size should be 4 bytes.

To fix this issue,TSInfo size is increased to 4bytes aligning with the
current standard.

CRs-Fixed: 3910625
Change-Id: I7979fa84af0295d21d4afe1b876af494a5b8fed8
This commit is contained in:
Dharmendra Tiwari
2024-09-03 23:06:17 -07:00
committed by Michael Bestas
parent 5d4b707b45
commit 65e66f3b11
3 changed files with 5 additions and 5 deletions

View File

@@ -367,7 +367,7 @@ FF SMPowerModeSet (1) //7.3.1.25
} }
} }
FF TSInfo (3) // 7.3.2.30 FF TSInfo (4) // 7.3.2.30
{ {
{ {
traffic_type: 1; traffic_type: 1;

View File

@@ -26,7 +26,7 @@
* *
* *
* This file was automatically generated by 'framesc' * This file was automatically generated by 'framesc'
* Wed Sep 29 13:23:21 2021 from the following file(s): * Tue Sep 3 23:04:38 2024 from the following file(s):
* *
* dot11f.frms * dot11f.frms
* *
@@ -441,7 +441,7 @@ typedef struct sDot11fFfTSInfo {
uint32_t unused:15; uint32_t unused:15;
} tDot11fFfTSInfo; } tDot11fFfTSInfo;
#define DOT11F_FF_TSINFO_LEN (3) #define DOT11F_FF_TSINFO_LEN (4)
void dot11f_unpack_ff_ts_info(tpAniSirGlobal, uint8_t *, tDot11fFfTSInfo *); void dot11f_unpack_ff_ts_info(tpAniSirGlobal, uint8_t *, tDot11fFfTSInfo *);

View File

@@ -24,7 +24,7 @@
* *
* *
* This file was automatically generated by 'framesc' * This file was automatically generated by 'framesc'
* Wed Sep 29 13:23:21 2021 from the following file(s): * Tue Sep 3 23:04:38 2024 from the following file(s):
* *
* dot11f.frms * dot11f.frms
* *
@@ -16338,7 +16338,7 @@ uint32_t dot11f_get_packed_del_ts_size(tpAniSirGlobal pCtx,
tDot11fDelTS *pFrm, uint32_t *pnNeeded) tDot11fDelTS *pFrm, uint32_t *pnNeeded)
{ {
uint32_t status = 0; uint32_t status = 0;
*pnNeeded = 7; *pnNeeded = 8;
status = get_packed_size_core(pCtx, (uint8_t *)pFrm, pnNeeded, status = get_packed_size_core(pCtx, (uint8_t *)pFrm, pnNeeded,
IES_DelTS); IES_DelTS);
return status; return status;