diff options
| author | Jeff Johnson <jjohnson@codeaurora.org> | 2016-11-23 13:10:51 -0800 |
|---|---|---|
| committer | qcabuildsw <qcabuildsw@localhost> | 2016-11-30 12:28:07 -0800 |
| commit | 6a198f0aa3564ba92d855a614c78e986372aabfd (patch) | |
| tree | 9acfa9e42c00a10b22b7c72092c383a430816a25 | |
| parent | ffa80cf6bbba265965657cdc7750c81519a4201b (diff) | |
qcacld-3.0: Fix -Wmissing-prototypes in lim_process_message_queue
We want to enable the compiler's -Wmissing-prototypes switch, but
there is existing code that is generating warnings. Fix all warnings
in lim_process_message_queue.
Change-Id: Ic95960eef7086a780d46291f7dd49313a144084c
CRs-Fixed: 1095421
| -rw-r--r-- | core/mac/src/pe/lim/lim_process_message_queue.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/mac/src/pe/lim/lim_process_message_queue.c b/core/mac/src/pe/lim/lim_process_message_queue.c index f447c6e79d7d..7ac76884164c 100644 --- a/core/mac/src/pe/lim/lim_process_message_queue.c +++ b/core/mac/src/pe/lim/lim_process_message_queue.c @@ -1138,7 +1138,7 @@ end: * @param pMac Pointer to Global MAC structure * @return QDF_STATUS_SUCCESS or QDF_STATUS_E_FAILURE */ -QDF_STATUS lim_send_stop_scan_offload_req(tpAniSirGlobal pMac, +static QDF_STATUS lim_send_stop_scan_offload_req(tpAniSirGlobal pMac, uint8_t SessionId, uint32_t scan_id, uint32_t scan_requestor_id) { tSirMsgQ msg; |
