Parcourir la source

qcacld-3.0: Rename HDD identifier pNext

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

Change-Id: I0dbb7dfcdd836c4bc70c832a4d265056e9efeba2
CRs-Fixed: 2412977
Jeff Johnson il y a 6 ans
Parent
commit
45100a968a
1 fichiers modifiés avec 3 ajouts et 3 suppressions
  1. 3 3
      core/hdd/src/wlan_hdd_tx_rx.c

+ 3 - 3
core/hdd/src/wlan_hdd_tx_rx.c

@@ -573,7 +573,7 @@ static void hdd_clear_tx_rx_connectivity_stats(struct hdd_adapter *adapter)
 
 void hdd_reset_all_adapters_connectivity_stats(struct hdd_context *hdd_ctx)
 {
-	struct hdd_adapter *adapter = NULL, *pNext = NULL;
+	struct hdd_adapter *adapter = NULL, *next = NULL;
 	QDF_STATUS status;
 
 	hdd_enter();
@@ -582,8 +582,8 @@ void hdd_reset_all_adapters_connectivity_stats(struct hdd_context *hdd_ctx)
 
 	while (NULL != adapter && QDF_STATUS_SUCCESS == status) {
 		hdd_clear_tx_rx_connectivity_stats(adapter);
-		status = hdd_get_next_adapter(hdd_ctx, adapter, &pNext);
-		adapter = pNext;
+		status = hdd_get_next_adapter(hdd_ctx, adapter, &next);
+		adapter = next;
 	}
 
 	hdd_exit();