Browse Source

qcacld-3.0: Rename HDD variable pStaCtx

The Linux Coding Style frowns upon mixed-case names and so-called
Hungarian notation, so rename HDD local variable pStaCtx to be
compliant.

Change-Id: Ief8942a12c802720d5eb2819e85eb895c6d8df40
CRs-Fixed: 2405752
Jeff Johnson 6 years ago
parent
commit
93107ad75f
3 changed files with 13 additions and 13 deletions
  1. 7 7
      core/hdd/src/wlan_hdd_ioctl.c
  2. 4 4
      core/hdd/src/wlan_hdd_wext.c
  3. 2 2
      core/sap/inc/sap_api.h

+ 7 - 7
core/hdd/src/wlan_hdd_ioctl.c

@@ -255,7 +255,7 @@ hdd_get_ibss_peer_info_cb(void *pUserData,
 				tSirPeerInfoRspParams *pPeerInfo)
 {
 	struct hdd_adapter *adapter = (struct hdd_adapter *) pUserData;
-	struct hdd_station_ctx *pStaCtx;
+	struct hdd_station_ctx *sta_ctx;
 	uint8_t i;
 
 	if ((NULL == adapter) ||
@@ -264,7 +264,7 @@ hdd_get_ibss_peer_info_cb(void *pUserData,
 		return;
 	}
 
-	pStaCtx = WLAN_HDD_GET_STATION_CTX_PTR(adapter);
+	sta_ctx = WLAN_HDD_GET_STATION_CTX_PTR(adapter);
 	if (NULL != pPeerInfo && QDF_STATUS_SUCCESS == pPeerInfo->status) {
 		/* validate number of peers */
 		if (pPeerInfo->numPeers > SIR_MAX_NUM_STA_IN_IBSS) {
@@ -272,19 +272,19 @@ hdd_get_ibss_peer_info_cb(void *pUserData,
 				pPeerInfo->numPeers, SIR_MAX_NUM_STA_IN_IBSS);
 			pPeerInfo->numPeers = SIR_MAX_NUM_STA_IN_IBSS;
 		}
-		pStaCtx->ibss_peer_info.status = pPeerInfo->status;
-		pStaCtx->ibss_peer_info.numPeers = pPeerInfo->numPeers;
+		sta_ctx->ibss_peer_info.status = pPeerInfo->status;
+		sta_ctx->ibss_peer_info.numPeers = pPeerInfo->numPeers;
 
 		for (i = 0; i < pPeerInfo->numPeers; i++)
-			pStaCtx->ibss_peer_info.peerInfoParams[i] =
+			sta_ctx->ibss_peer_info.peerInfoParams[i] =
 				pPeerInfo->peerInfoParams[i];
 	} else {
 		hdd_debug("peerInfo %s: status %u, numPeers %u",
 			pPeerInfo ? "valid" : "null",
 			pPeerInfo ? pPeerInfo->status : QDF_STATUS_E_FAILURE,
 			pPeerInfo ? pPeerInfo->numPeers : 0);
-		pStaCtx->ibss_peer_info.numPeers = 0;
-		pStaCtx->ibss_peer_info.status = QDF_STATUS_E_FAILURE;
+		sta_ctx->ibss_peer_info.numPeers = 0;
+		sta_ctx->ibss_peer_info.status = QDF_STATUS_E_FAILURE;
 	}
 
 	complete(&adapter->ibss_peer_info_comp);

+ 4 - 4
core/hdd/src/wlan_hdd_wext.c

@@ -3399,8 +3399,8 @@ static QDF_STATUS hdd_wlan_get_ibss_peer_info(struct hdd_adapter *adapter,
 {
 	QDF_STATUS status = QDF_STATUS_E_FAILURE;
 	mac_handle_t mac_handle = adapter->hdd_ctx->mac_handle;
-	struct hdd_station_ctx *pStaCtx = WLAN_HDD_GET_STATION_CTX_PTR(adapter);
-	tSirPeerInfoRspParams *pPeerInfo = &pStaCtx->ibss_peer_info;
+	struct hdd_station_ctx *sta_ctx = WLAN_HDD_GET_STATION_CTX_PTR(adapter);
+	tSirPeerInfoRspParams *pPeerInfo = &sta_ctx->ibss_peer_info;
 
 	INIT_COMPLETION(adapter->ibss_peer_info_comp);
 	status = sme_request_ibss_peer_info(mac_handle, adapter,
@@ -3448,8 +3448,8 @@ static QDF_STATUS hdd_wlan_get_ibss_peer_info_all(struct hdd_adapter *adapter)
 {
 	QDF_STATUS status = QDF_STATUS_E_FAILURE;
 	mac_handle_t mac_handle = adapter->hdd_ctx->mac_handle;
-	struct hdd_station_ctx *pStaCtx = WLAN_HDD_GET_STATION_CTX_PTR(adapter);
-	tSirPeerInfoRspParams *pPeerInfo = &pStaCtx->ibss_peer_info;
+	struct hdd_station_ctx *sta_ctx = WLAN_HDD_GET_STATION_CTX_PTR(adapter);
+	tSirPeerInfoRspParams *pPeerInfo = &sta_ctx->ibss_peer_info;
 	int i;
 
 	INIT_COMPLETION(adapter->ibss_peer_info_comp);

+ 2 - 2
core/sap/inc/sap_api.h

@@ -917,8 +917,8 @@ QDF_STATUS wlansap_disassoc_sta(struct sap_context *sap_ctx,
 
 /**
  * wlansap_deauth_sta() - Ap App/HDD initiated deauthentication of station
- * @pStaCtx : Pointer to the SAP context
- * @pDelStaParams : Pointer to parameters of the station to deauthenticate
+ * @sap_ctx: Pointer to the SAP context
+ * @pDelStaParams: Pointer to parameters of the station to deauthenticate
  *
  * This api function provides for Ap App/HDD initiated deauthentication of
  * station