diff options
| author | Jeff Johnson <jjohnson@codeaurora.org> | 2016-10-06 18:45:15 -0700 |
|---|---|---|
| committer | qcabuildsw <qcabuildsw@localhost> | 2016-10-12 11:51:40 -0700 |
| commit | 4f9d4a2aa8b91cfbf675c2fa5a8b2105c1f42332 (patch) | |
| tree | c35ce8190da88dd830516844f304a36db7c7ca30 | |
| parent | 327d4b3fc880ce6580e830788a759c20b59bb6a8 (diff) | |
qcacld-3.0: Fix -Wmissing-prototypes in lim_ft*
We want to enable the compiler's -Wmissing-prototypes switch, but
there is existing code that is generating warnings. Fix all warnings
in lim_ft & lim_ft_preauth.
Change-Id: I566992b77e47309f8a98fa5be8b46014140820a1
CRs-Fixed: 1075090
| -rw-r--r-- | core/mac/src/pe/lim/lim_ft.c | 2 | ||||
| -rw-r--r-- | core/mac/src/pe/lim/lim_ft_preauth.c | 7 |
2 files changed, 5 insertions, 4 deletions
diff --git a/core/mac/src/pe/lim/lim_ft.c b/core/mac/src/pe/lim/lim_ft.c index ba6ef6ce34cc..d690218a2ce4 100644 --- a/core/mac/src/pe/lim/lim_ft.c +++ b/core/mac/src/pe/lim/lim_ft.c @@ -861,7 +861,7 @@ bool lim_process_ft_update_key(tpAniSirGlobal pMac, uint32_t *pMsgBuf) return true; } -void +static void lim_ft_send_aggr_qos_rsp(tpAniSirGlobal pMac, uint8_t rspReqd, tpAggrAddTsParams aggrQosRsp, uint8_t smesessionId) { diff --git a/core/mac/src/pe/lim/lim_ft_preauth.c b/core/mac/src/pe/lim/lim_ft_preauth.c index 07368b6cfd92..6195a041f3c0 100644 --- a/core/mac/src/pe/lim/lim_ft_preauth.c +++ b/core/mac/src/pe/lim/lim_ft_preauth.c @@ -350,12 +350,13 @@ 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 + * @psessionEntry: PE Session * * Return: None */ -void lim_ft_process_pre_auth_result(tpAniSirGlobal pMac, QDF_STATUS status, - tpPESession psessionEntry) +static void lim_ft_process_pre_auth_result(tpAniSirGlobal pMac, + QDF_STATUS status, + tpPESession psessionEntry) { if (NULL == psessionEntry || NULL == psessionEntry->ftPEContext.pFTPreAuthReq) |
