Explorar el Código

qcacld-3.0: Rename HDD identifier pContext

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

Change-Id: I1fe6d309d9b29703ca9f643cc0a8200fc4964fc2
CRs-Fixed: 2412966
Jeff Johnson hace 6 años
padre
commit
8d4621bc8d

+ 2 - 2
core/hdd/inc/wlan_hdd_assoc.h

@@ -288,7 +288,7 @@ void hdd_abort_ongoing_sta_connection(struct hdd_context *hdd_ctx);
 
 /**
  * hdd_sme_roam_callback() - hdd sme roam callback
- * @pContext: pointer to adapter context
+ * @context: pointer to adapter context
  * @roam_info: pointer to roam info
  * @roam_id: roam id
  * @roam_status: roam status
@@ -296,7 +296,7 @@ void hdd_abort_ongoing_sta_connection(struct hdd_context *hdd_ctx);
  *
  * Return: QDF_STATUS enumeration
  */
-QDF_STATUS hdd_sme_roam_callback(void *pContext,
+QDF_STATUS hdd_sme_roam_callback(void *context,
 				 struct csr_roam_info *roam_info,
 				 uint32_t roam_id,
 				 eRoamCmdStatus roam_status,

+ 5 - 5
core/hdd/src/wlan_hdd_assoc.c

@@ -4629,7 +4629,7 @@ static void hdd_roam_channel_switch_handler(struct hdd_adapter *adapter,
 
 /**
  * hdd_sme_roam_callback() - hdd sme roam callback
- * @pContext: pointer to adapter context
+ * @context: pointer to adapter context
  * @roam_info: pointer to roam info
  * @roam_id: roam id
  * @roam_status: roam status
@@ -4638,19 +4638,19 @@ static void hdd_roam_channel_switch_handler(struct hdd_adapter *adapter,
  * Return: QDF_STATUS enumeration
  */
 QDF_STATUS
-hdd_sme_roam_callback(void *pContext, struct csr_roam_info *roam_info,
+hdd_sme_roam_callback(void *context, struct csr_roam_info *roam_info,
 		      uint32_t roam_id,
 		      eRoamCmdStatus roam_status, eCsrRoamResult roam_result)
 {
 	QDF_STATUS qdf_ret_status = QDF_STATUS_SUCCESS;
-	struct hdd_adapter *adapter = (struct hdd_adapter *) pContext;
+	struct hdd_adapter *adapter = context;
 	struct hdd_station_ctx *sta_ctx = NULL;
 	QDF_STATUS status = QDF_STATUS_SUCCESS;
 	struct cfg80211_bss *bss_status;
 	struct hdd_context *hdd_ctx;
 
-	hdd_debug("CSR Callback: status= %d result= %d roamID=%d",
-			  roam_status, roam_result, roam_id);
+	hdd_debug("CSR Callback: status=%d result=%d roamID=%d",
+		  roam_status, roam_result, roam_id);
 
 	/* Sanity check */
 	if ((NULL == adapter) || (WLAN_HDD_ADAPTER_MAGIC != adapter->magic)) {

+ 1 - 1
core/hdd/src/wlan_hdd_stats.c

@@ -6016,7 +6016,7 @@ static void hdd_get_station_statistics_cb(void *stats, void *context)
 	struct csr_per_chain_rssi_stats_info *per_chain_rssi_stats;
 
 	if ((NULL == stats) || (NULL == context)) {
-		hdd_err("Bad param, pStats [%pK] pContext [%pK]",
+		hdd_err("Bad param, stats [%pK] context [%pK]",
 			stats, context);
 		return;
 	}