浏览代码

qcacld-3.0: Remove status arg from lim_ft_process_pre_auth_result

Argument 'status' to the API lim_ft_process_pre_auth_result was not
being used. Remove 'status' from the argument list.

Change-Id: Ie514f8d1ec43dc964171132a4306f9089f445e8f
CRs-Fixed: 2071677
Naveen Rawat 7 年之前
父节点
当前提交
0e1fe12361
共有 1 个文件被更改,包括 2 次插入5 次删除
  1. 2 5
      core/mac/src/pe/lim/lim_ft_preauth.c

+ 2 - 5
core/mac/src/pe/lim/lim_ft_preauth.c

@@ -352,13 +352,11 @@ tSirRetStatus lim_ft_setup_auth_session(tpAniSirGlobal pMac,
 /**
  * lim_ft_process_pre_auth_result() - Process the Auth frame
  * @pMac: Global MAC context
- * @status: Status code
  * @psessionEntry: PE Session
  *
  * Return: None
  */
 static void lim_ft_process_pre_auth_result(tpAniSirGlobal pMac,
-					   QDF_STATUS status,
 					   tpPESession psessionEntry)
 {
 	if (NULL == psessionEntry ||
@@ -495,7 +493,7 @@ send_rsp:
 		pe_debug("Pre auth on same channel as connected AP channel %d",
 			psessionEntry->ftPEContext.pFTPreAuthReq->
 			preAuthchannelNum);
-		lim_ft_process_pre_auth_result(pMac, status, psessionEntry);
+		lim_ft_process_pre_auth_result(pMac, psessionEntry);
 	}
 }
 
@@ -762,8 +760,7 @@ void lim_preauth_scan_event_handler(tpAniSirGlobal mac_ctx,
 		 * after successful auth, or timed out. Either way, STA
 		 * is back to home channel. Data traffic can continue.
 		 */
-		lim_ft_process_pre_auth_result(mac_ctx, QDF_STATUS_SUCCESS,
-			session_entry);
+		lim_ft_process_pre_auth_result(mac_ctx, session_entry);
 		break;
 
 	case SIR_SCAN_EVENT_FOREIGN_CHANNEL: