Эх сурвалжийг харах

qcacld-3.0: Fix misleading indent

lim_process_ap_ecsa_timeout() contains a misleading indent. Reduce the
indentation of the affected code.

Change-Id: Ic18ebf88b0a754c8088005d22a9cec94313fa550
CRs-Fixed: 2297513
Dustin Brown 6 жил өмнө
parent
commit
7dede43bec

+ 6 - 6
core/mac/src/pe/lim/lim_utils.c

@@ -8384,12 +8384,12 @@ void lim_process_ap_ecsa_timeout(void *data)
 		else
 			bcn_int = WNI_CFG_BEACON_INTERVAL_STADEF;
 
-			status = qdf_mc_timer_start(&session->ap_ecsa_timer,
-						    bcn_int);
-			if (QDF_IS_STATUS_ERROR(status)) {
-				pe_err("cannot start ap_ecsa_timer");
-				lim_process_ap_ecsa_timeout(session);
-			}
+		status = qdf_mc_timer_start(&session->ap_ecsa_timer,
+					    bcn_int);
+		if (QDF_IS_STATUS_ERROR(status)) {
+			pe_err("cannot start ap_ecsa_timer");
+			lim_process_ap_ecsa_timeout(session);
+		}
 	} else {
 		tSirSmeCSAIeTxCompleteRsp *chan_switch_tx_rsp;
 		struct scheduler_msg msg = {0};