Explorar el Código

qcacld-3.0: Rename HDD identifier sapContext

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

Change-Id: I77c66a27c423941285ddd52cfd642d8be67415fe
CRs-Fixed: 2412965
Jeff Johnson hace 6 años
padre
commit
bc376d8e9e
Se han modificado 1 ficheros con 3 adiciones y 3 borrados
  1. 3 3
      core/hdd/src/wlan_hdd_hostapd.c

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

@@ -3224,7 +3224,7 @@ QDF_STATUS hdd_init_ap_mode(struct hdd_adapter *adapter, bool reinit)
 	struct hdd_hostapd_state *phostapdBuf;
 	struct hdd_context *hdd_ctx = WLAN_HDD_GET_CTX(adapter);
 	QDF_STATUS status = QDF_STATUS_E_FAILURE;
-	struct sap_context *sapContext = NULL;
+	struct sap_context *sap_context = NULL;
 	int ret;
 	enum dfs_mode acs_dfs_mode;
 
@@ -3233,8 +3233,8 @@ QDF_STATUS hdd_init_ap_mode(struct hdd_adapter *adapter, bool reinit)
 	hdd_info("SSR in progress: %d", reinit);
 	qdf_atomic_init(&adapter->session.ap.acs_in_progress);
 
-	sapContext = hdd_hostapd_init_sap_session(adapter, reinit);
-	if (!sapContext) {
+	sap_context = hdd_hostapd_init_sap_session(adapter, reinit);
+	if (!sap_context) {
 		hdd_err("Invalid sap_ctx");
 		goto error_release_vdev;
 	}