Преглед на файлове

qcacld-3.0: Use mac_handle_t in wlan_hdd_debugfs

Change "qcacld-3.0: Introduce mac_handle_t" introduced a modern
name for what was previously called the tHalHandle. Transition
wlan_hdd_debugfs to use the new naming.

Change-Id: I762d1f9520c94beafc912f9b6e3720531af0eeea
CRs-Fixed: 2262586
Jeff Johnson преди 6 години
родител
ревизия
8b941e074c
променени са 1 файла, в които са добавени 3 реда и са изтрити 3 реда
  1. 3 3
      core/hdd/src/wlan_hdd_debugfs.c

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

@@ -266,7 +266,7 @@ static ssize_t __wcnss_patterngen_write(struct file *file,
 				 &adapter->mac_addr);
 
 		/* Delete pattern */
-		status = sme_del_periodic_tx_ptrn(hdd_ctx->hHal,
+		status = sme_del_periodic_tx_ptrn(hdd_ctx->mac_handle,
 						  delPeriodicTxPtrnParams);
 		if (QDF_STATUS_SUCCESS != status) {
 			hdd_err("sme_del_periodic_tx_ptrn() failed!");
@@ -338,7 +338,7 @@ static ssize_t __wcnss_patterngen_write(struct file *file,
 	}
 
 	/* Add pattern */
-	status = sme_add_periodic_tx_ptrn(hdd_ctx->hHal,
+	status = sme_add_periodic_tx_ptrn(hdd_ctx->mac_handle,
 					  addPeriodicTxPtrnParams);
 	if (QDF_STATUS_SUCCESS != status) {
 		hdd_err("sme_add_periodic_tx_ptrn() failed!");
@@ -484,7 +484,7 @@ static ssize_t __wlan_hdd_read_power_debugfs(struct file *file,
 	}
 	cookie = hdd_request_cookie(request);
 
-	status = sme_power_debug_stats_req(hdd_ctx->hHal,
+	status = sme_power_debug_stats_req(hdd_ctx->mac_handle,
 					   hdd_power_debugstats_cb,
 					   cookie);
 	if (QDF_IS_STATUS_ERROR(status)) {