From 034649dbd7a4aa5691f16d533bb4dd634b8b88ce Mon Sep 17 00:00:00 2001 From: Jeff Johnson Date: Sun, 6 Jan 2019 14:34:46 -0800 Subject: [PATCH] qcacld-3.0: Remove requestedMCRate from tSap_AssocMacAddr The requestedMCRate field in tSap_AssocMacAddr is unused, so remove it. Change-Id: If5ae0df5f84c99e3684df3cac75d32d63227d5ce CRs-Fixed: 2380770 --- core/sap/inc/sap_api.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/sap/inc/sap_api.h b/core/sap/inc/sap_api.h index 0a4ff08fcf..b34f6a439e 100644 --- a/core/sap/inc/sap_api.h +++ b/core/sap/inc/sap_api.h @@ -310,6 +310,7 @@ typedef struct sap_StationMICFailureEvent_s { uint8_t TSC[SIR_CIPHER_SEQ_CTR_SIZE]; /* sequence number */ } tSap_StationMICFailureEvent; + /*Structure to return MAC address of associated stations */ typedef struct sap_AssocMacAddr_s { struct qdf_mac_addr staMac; /* Associated station's MAC address */ @@ -318,7 +319,6 @@ typedef struct sap_AssocMacAddr_s { uint8_t ShortGI40Mhz; uint8_t ShortGI20Mhz; uint8_t Support40Mhz; - uint32_t requestedMCRate; tSirSupportedRates supportedRates; } tSap_AssocMacAddr, *tpSap_AssocMacAddr;