Explorar el Código

qcacld-3.0: Replace typedef tSirSetHT2040Mode

The Linux Coding Style enumerates a few special cases where typedefs
are useful, but stresses "NEVER EVER use a typedef unless you can
clearly match one of those rules." The tSirSetHT2040Mode typedef does
not meet any of those criteria, so replace it (and the "tp" variant)
with a reference to the underlying struct.

Further note the Linux Coding Style frowns upon mixed-case names and
so-called Hungarian notation, so in conjunction rename the underlying
struct to be in compliance.

Change-Id: Ief847b32b1f977f47f9b611a650f12a36719531c
CRs-Fixed: 2396063
Jeff Johnson hace 6 años
padre
commit
b2c72c0d4e

+ 2 - 2
core/mac/inc/sir_api.h

@@ -1936,14 +1936,14 @@ struct change_bi_params {
 };
 
 #ifdef QCA_HT_2040_COEX
-typedef struct sSirSetHT2040Mode {
+struct set_ht2040_mode {
 	uint16_t messageType;
 	uint16_t length;
 	uint8_t cbMode;
 	bool obssEnabled;
 	struct qdf_mac_addr bssid;
 	uint8_t sessionId;      /* Session ID */
-} tSirSetHT2040Mode, *tpSirSetHT2040Mode;
+};
 #endif
 
 #define SIR_WPS_PBC_WALK_TIME   120     /* 120 Second */

+ 2 - 2
core/mac/src/pe/lim/lim_process_sme_req_messages.c

@@ -3949,7 +3949,7 @@ static void __lim_process_sme_change_bi(struct mac_context *mac,
 static void __lim_process_sme_set_ht2040_mode(struct mac_context *mac,
 					      uint32_t *pMsgBuf)
 {
-	tpSirSetHT2040Mode pSetHT2040Mode;
+	struct set_ht2040_mode *pSetHT2040Mode;
 	struct pe_session *pe_session;
 	uint8_t sessionId = 0;
 	struct scheduler_msg msg = {0};
@@ -3963,7 +3963,7 @@ static void __lim_process_sme_set_ht2040_mode(struct mac_context *mac,
 		return;
 	}
 
-	pSetHT2040Mode = (tpSirSetHT2040Mode) pMsgBuf;
+	pSetHT2040Mode = (struct set_ht2040_mode *) pMsgBuf;
 
 	pe_session = pe_find_session_by_bssid(mac,
 				pSetHT2040Mode->bssid.bytes,

+ 3 - 3
core/sme/src/csr/csr_api_roam.c

@@ -15333,7 +15333,7 @@ QDF_STATUS csr_send_chng_mcc_beacon_interval(struct mac_context *mac,
 QDF_STATUS csr_set_ht2040_mode(struct mac_context *mac, uint32_t sessionId,
 			       ePhyChanBondState cbMode, bool obssEnabled)
 {
-	tpSirSetHT2040Mode pMsg;
+	struct set_ht2040_mode *pMsg;
 	uint16_t len = 0;
 	QDF_STATUS status = QDF_STATUS_SUCCESS;
 	struct csr_roam_session *pSession = CSR_GET_SESSION(mac, sessionId);
@@ -15344,14 +15344,14 @@ QDF_STATUS csr_set_ht2040_mode(struct mac_context *mac, uint32_t sessionId,
 	}
 
 	/* Create the message and send to lim */
-	len = sizeof(tSirSetHT2040Mode);
+	len = sizeof(struct set_ht2040_mode);
 	pMsg = qdf_mem_malloc(len);
 	if (NULL == pMsg)
 		status = QDF_STATUS_E_NOMEM;
 	else
 		status = QDF_STATUS_SUCCESS;
 	if (QDF_IS_STATUS_SUCCESS(status)) {
-		qdf_mem_zero(pMsg, sizeof(tSirSetHT2040Mode));
+		qdf_mem_zero(pMsg, sizeof(struct set_ht2040_mode));
 		pMsg->messageType = eWNI_SME_SET_HT_2040_MODE;
 		pMsg->length = len;