Browse Source

qcacld-3.0: Rename HDD identifier callbackInfo

The Linux Coding Style frowns upon mixed-case names so rename HDD
identifier callbackInfo to be compliant.

Change-Id: I71e41f668f0451cc482e8889fd4d751d6bb02115
CRs-Fixed: 2415548
Jeff Johnson 6 years ago
parent
commit
09bb9cf90a
1 changed files with 5 additions and 5 deletions
  1. 5 5
      core/hdd/src/wlan_hdd_wext.c

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

@@ -5998,7 +5998,7 @@ static int __iw_setchar_getnone(struct net_device *dev,
 	case WE_NEIGHBOR_REPORT_REQUEST:
 	{
 		tRrmNeighborReq neighborReq;
-		tRrmNeighborRspCallbackInfo callbackInfo;
+		tRrmNeighborRspCallbackInfo callback;
 		bool rrm_enabled = false;
 
 		ucfg_wlan_mlme_get_rrm_enabled(hdd_ctx->psoc,
@@ -6034,14 +6034,14 @@ static int __iw_setchar_getnone(struct net_device *dev,
 				neighborReq.neighbor_report_offload = true;
 			}
 
-			callbackInfo.neighborRspCallback = NULL;
-			callbackInfo.neighborRspCallbackContext = NULL;
-			callbackInfo.timeout = 5000; /* 5 seconds */
+			callback.neighborRspCallback = NULL;
+			callback.neighborRspCallbackContext = NULL;
+			callback.timeout = 5000; /* 5 seconds */
 			sme_neighbor_report_request(
 					hdd_ctx->mac_handle,
 					adapter->vdev_id,
 					&neighborReq,
-					&callbackInfo);
+					&callback);
 		} else {
 			hdd_err("Ignoring neighbor request as RRM not enabled");
 			ret = -EINVAL;