diff options
| author | Krishna Kumaar Natarajan <kknatara@qca.qualcomm.com> | 2015-02-12 15:37:40 -0800 |
|---|---|---|
| committer | AnjaneeDevi Kapparapu <c_akappa@qti.qualcomm.com> | 2015-05-01 21:45:11 +0530 |
| commit | b6a4cfc0f6ea0f141e41fcbfdb36ba84831d2dee (patch) | |
| tree | 0fd4e880134c9b4ae93dc0753fc49052300643f4 /CORE/MAC/src/include | |
| parent | 2a03ce518ca47d85c741c52227e7c9e849ce76d4 (diff) | |
qcacld: Update fine timing measurement capabilities
Currently our driver does not have support to advertise Fine
Timing Measurement initiator/responder capability. As per
802.11mc spec, two bits are used to advertise this in extended
capability IE.
Introduce the second bit for advertising Fine Timing Measurement
initiator capability and add Ext Capability IE in Probe Request frame.
Change-Id: Iec7060079158a38549a6ee5819e6f2bba8ab5abe
CRs-Fixed: 798460
Diffstat (limited to 'CORE/MAC/src/include')
| -rw-r--r-- | CORE/MAC/src/include/dot11f.h | 3 | ||||
| -rw-r--r-- | CORE/MAC/src/include/parserApi.h | 4 |
2 files changed, 4 insertions, 3 deletions
diff --git a/CORE/MAC/src/include/dot11f.h b/CORE/MAC/src/include/dot11f.h index b522dd05e5de..0f9e2a3e057d 100644 --- a/CORE/MAC/src/include/dot11f.h +++ b/CORE/MAC/src/include/dot11f.h @@ -37,7 +37,7 @@ * * * This file was automatically generated by 'framesc' - * Thu Mar 19 17:16:31 2015 from the following file(s): + * Thu Apr 30 13:39:44 2015 from the following file(s): * * dot11f.frms * @@ -6795,6 +6795,7 @@ typedef struct sDot11fProbeRequest{ tDot11fIEWFATPC WFATPC; tDot11fIEP2PProbeReq P2PProbeReq; tDot11fIEVHTCaps VHTCaps; + tDot11fIEExtCap ExtCap; } tDot11fProbeRequest; #define DOT11F_PROBEREQUEST ( 36 ) diff --git a/CORE/MAC/src/include/parserApi.h b/CORE/MAC/src/include/parserApi.h index ffc00b1696eb..03fa7c5fe676 100644 --- a/CORE/MAC/src/include/parserApi.h +++ b/CORE/MAC/src/include/parserApi.h @@ -398,8 +398,8 @@ struct s_ext_cap { uint8_t NwChanControl: 1; uint8_t WhiteSpaceMap: 1; uint8_t ChanAvailQuery: 1; - uint8_t fineTimingMeas: 1; - uint8_t reserved7: 1; + uint8_t fine_time_meas_responder: 1; + uint8_t fine_time_meas_initiator: 1; }; tANI_U8 |
