Explorar el Código

qcacld-3.0: Rename HDD identifier pDelStaParams

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

Change-Id: I64a86d62ce5477436c419dd827f7b836f93fe4b5
CRs-Fixed: 2412717
Jeff Johnson hace 6 años
padre
commit
50e37e928b
Se han modificado 3 ficheros con 19 adiciones y 18 borrados
  1. 7 6
      core/hdd/src/wlan_hdd_cfg80211.c
  2. 2 2
      core/hdd/src/wlan_hdd_hostapd.h
  3. 10 10
      core/hdd/src/wlan_hdd_main.c

+ 7 - 6
core/hdd/src/wlan_hdd_cfg80211.c

@@ -19044,6 +19044,7 @@ static int wlan_hdd_set_txq_params(struct wiphy *wiphy,
 /**
  * __wlan_hdd_cfg80211_del_station() - delete station v2
  * @wiphy: Pointer to wiphy
+ * @dev: Underlying net device
  * @param: Pointer to delete station parameter
  *
  * Return: 0 for success, non-zero for failure
@@ -19051,7 +19052,7 @@ static int wlan_hdd_set_txq_params(struct wiphy *wiphy,
 static
 int __wlan_hdd_cfg80211_del_station(struct wiphy *wiphy,
 				    struct net_device *dev,
-				    struct csr_del_sta_params *pDelStaParams)
+				    struct csr_del_sta_params *param)
 {
 	struct hdd_adapter *adapter = WLAN_HDD_GET_PRIV_PTR(dev);
 	struct hdd_context *hdd_ctx;
@@ -19082,7 +19083,7 @@ int __wlan_hdd_cfg80211_del_station(struct wiphy *wiphy,
 	if (0 != status)
 		return status;
 
-	mac = (uint8_t *) pDelStaParams->peerMacAddr.bytes;
+	mac = (uint8_t *) param->peerMacAddr.bytes;
 	mac_handle = hdd_ctx->mac_handle;
 
 	if ((QDF_SAP_MODE == adapter->device_mode) ||
@@ -19118,7 +19119,7 @@ int __wlan_hdd_cfg80211_del_station(struct wiphy *wiphy,
 					qdf_event_reset(&hapd_state->qdf_sta_disassoc_event);
 					qdf_status =
 						hdd_softap_sta_deauth(adapter,
-							pDelStaParams);
+							param);
 					if (QDF_IS_STATUS_SUCCESS(qdf_status)) {
 						adapter->sta_info[i].
 						is_deauth_in_progress = true;
@@ -19171,10 +19172,10 @@ int __wlan_hdd_cfg80211_del_station(struct wiphy *wiphy,
 			qdf_event_reset(&hapd_state->qdf_sta_disassoc_event);
 			sme_send_disassoc_req_frame(mac_handle,
 					adapter->vdev_id,
-					(uint8_t *)&pDelStaParams->peerMacAddr,
-					pDelStaParams->reason_code, 0);
+					(uint8_t *)&param->peerMacAddr,
+					param->reason_code, 0);
 			qdf_status = hdd_softap_sta_deauth(adapter,
-							   pDelStaParams);
+							   param);
 			if (!QDF_IS_STATUS_SUCCESS(qdf_status)) {
 				adapter->sta_info[sta_id].is_deauth_in_progress =
 					false;

+ 2 - 2
core/hdd/src/wlan_hdd_hostapd.h

@@ -102,9 +102,9 @@ eCsrEncryptionType
 hdd_translate_wpa_to_csr_encryption_type(uint8_t cipher_suite[4]);
 
 QDF_STATUS hdd_softap_sta_deauth(struct hdd_adapter *adapter,
-		struct csr_del_sta_params *pDelStaParams);
+				 struct csr_del_sta_params *param);
 void hdd_softap_sta_disassoc(struct hdd_adapter *adapter,
-			     struct csr_del_sta_params *pDelStaParams);
+			     struct csr_del_sta_params *param);
 
 QDF_STATUS hdd_hostapd_sap_event_cb(struct sap_event *sap_event,
 				    void *context);

+ 10 - 10
core/hdd/src/wlan_hdd_main.c

@@ -12266,27 +12266,27 @@ void hdd_deregister_cb(struct hdd_context *hdd_ctx)
 
 /**
  * hdd_softap_sta_deauth() - handle deauth req from HDD
- * @adapter:	Pointer to the HDD
- * @enable:	bool value
+ * @adapter: Pointer to the HDD adapter
+ * @param: Params to the operation
  *
  * This to take counter measure to handle deauth req from HDD
  *
  * Return: None
  */
 QDF_STATUS hdd_softap_sta_deauth(struct hdd_adapter *adapter,
-				 struct csr_del_sta_params *pDelStaParams)
+				 struct csr_del_sta_params *param)
 {
 	QDF_STATUS qdf_status = QDF_STATUS_E_FAULT;
 
 	hdd_enter();
 
 	/* Ignore request to deauth bcmc station */
-	if (pDelStaParams->peerMacAddr.bytes[0] & 0x1)
+	if (param->peerMacAddr.bytes[0] & 0x1)
 		return qdf_status;
 
 	qdf_status =
 		wlansap_deauth_sta(WLAN_HDD_GET_SAP_CTX_PTR(adapter),
-				   pDelStaParams);
+				   param);
 
 	hdd_exit();
 	return qdf_status;
@@ -12294,24 +12294,24 @@ QDF_STATUS hdd_softap_sta_deauth(struct hdd_adapter *adapter,
 
 /**
  * hdd_softap_sta_disassoc() - take counter measure to handle deauth req from HDD
- * @adapter:	Pointer to the HDD
- * @p_del_sta_params: pointer to station deletion parameters
+ * @adapter: Pointer to the HDD
+ * @param: pointer to station deletion parameters
  *
  * This to take counter measure to handle deauth req from HDD
  *
  * Return: None
  */
 void hdd_softap_sta_disassoc(struct hdd_adapter *adapter,
-			     struct csr_del_sta_params *pDelStaParams)
+			     struct csr_del_sta_params *param)
 {
 	hdd_enter();
 
 	/* Ignore request to disassoc bcmc station */
-	if (pDelStaParams->peerMacAddr.bytes[0] & 0x1)
+	if (param->peerMacAddr.bytes[0] & 0x1)
 		return;
 
 	wlansap_disassoc_sta(WLAN_HDD_GET_SAP_CTX_PTR(adapter),
-			     pDelStaParams);
+			     param);
 }
 
 void wlan_hdd_disable_roaming(struct hdd_adapter *cur_adapter)