diff options
| author | Jeff Johnson <jjohnson@codeaurora.org> | 2016-10-07 10:37:31 -0700 |
|---|---|---|
| committer | qcabuildsw <qcabuildsw@localhost> | 2016-10-20 16:04:11 -0700 |
| commit | 4ae7506db1aedb0ce4e5c3edad3ce37733bece6a (patch) | |
| tree | df8fac385f31b498cb5ae3f9f5b7b090747f989b | |
| parent | 2f368192434a7ca56168bc95a7fca3e22b9e2ae0 (diff) | |
qcacld-3.0: Fix -Wmissing-prototypes in sme_qos
We want to enable the compiler's -Wmissing-prototypes switch, but
there is existing code that is generating warnings. Fix all warnings
in sme_qos.
Change-Id: Ic9b42f91eb9a2563c146965581b5ef321c201bee
CRs-Fixed: 1075575
| -rw-r--r-- | core/sme/src/qos/sme_qos.c | 16 |
1 files changed, 11 insertions, 5 deletions
diff --git a/core/sme/src/qos/sme_qos.c b/core/sme/src/qos/sme_qos.c index 3ad7a41f372b..6a097f9cbe74 100644 --- a/core/sme/src/qos/sme_qos.c +++ b/core/sme/src/qos/sme_qos.c @@ -2933,9 +2933,10 @@ QDF_STATUS sme_qos_process_set_key_success_ind(tpAniSirGlobal pMac, * * Return: QDF_STATUS_SUCCESS - Release is successful. */ -QDF_STATUS sme_qos_ese_save_tspec_response(tpAniSirGlobal pMac, uint8_t sessionId, - tDot11fIEWMMTSPEC *pTspec, uint8_t ac, - uint8_t tspecIndex) +static QDF_STATUS +sme_qos_ese_save_tspec_response(tpAniSirGlobal pMac, uint8_t sessionId, + tDot11fIEWMMTSPEC *pTspec, uint8_t ac, + uint8_t tspecIndex) { tpSirAddtsRsp pAddtsRsp = &sme_qos_cb.sessionInfo[sessionId].ac_info[ac].addTsRsp[tspecIndex]; @@ -2977,6 +2978,7 @@ QDF_STATUS sme_qos_ese_save_tspec_response(tpAniSirGlobal pMac, uint8_t sessionI * * Return: QDF_STATUS_SUCCESS - Release is successful. */ +static QDF_STATUS sme_qos_ese_process_reassoc_tspec_rsp(tpAniSirGlobal pMac, uint8_t sessionId, void *pEvent_info) @@ -3192,7 +3194,7 @@ uint8_t sme_qos_ese_retrieve_tspec_info(tpAniSirGlobal mac_ctx, #endif - +static QDF_STATUS sme_qos_create_tspec_ricie(tpAniSirGlobal pMac, sme_QosWmmTspecInfo *pTspec_Info, uint8_t *pRICBuffer, uint32_t *pRICLength, @@ -3540,7 +3542,9 @@ QDF_STATUS sme_qos_ft_aggr_qos_req(tpAniSirGlobal mac_ctx, uint8_t session_id) return status; } -QDF_STATUS sme_qos_process_ftric_response(tpAniSirGlobal pMac, uint8_t sessionId, +static +QDF_STATUS sme_qos_process_ftric_response(tpAniSirGlobal pMac, + uint8_t sessionId, tDot11fIERICDataDesc *pRicDataDesc, uint8_t ac, uint8_t tspecIndex) { @@ -3813,6 +3817,7 @@ sme_qos_next_ric: } #endif /* WLAN_FEATURE_ROAM_OFFLOAD */ +static QDF_STATUS sme_qos_process_ft_reassoc_rsp_ev(tpAniSirGlobal mac_ctx, uint8_t sessionid, void *event_info) { @@ -4510,6 +4515,7 @@ QDF_STATUS sme_qos_process_reassoc_req_ev(tpAniSirGlobal pMac, uint8_t sessionId * * Return: QDF_STATUS */ +static QDF_STATUS sme_qos_handle_handoff_state(tpAniSirGlobal mac_ctx, sme_QosSessionInfo *qos_session, sme_QosACInfo *ac_info, sme_QosEdcaAcType ac, uint8_t sessionid) |
