diff options
| author | Jeff Johnson <jjohnson@codeaurora.org> | 2016-10-06 18:47:06 -0700 |
|---|---|---|
| committer | qcabuildsw <qcabuildsw@localhost> | 2016-10-11 23:47:18 -0700 |
| commit | 5948a1869e19fb6c4e76822e13ae3638aeb58693 (patch) | |
| tree | 0673a0f917b206c7832750edd68467e056c41b74 | |
| parent | 72c8e7c7e4cf8a7a529c99256c060d1fa27725d1 (diff) | |
qcacld-3.0: Fix -Wmissing-prototypes in lim_ibss_peer_mgmt
We want to enable the compiler's -Wmissing-prototypes switch, but
there is existing code that is generating warnings. Fix all warnings
in lim_ibss_peer_mgmt.
Change-Id: I399108d2e880631f60afec51d2c6472d623f907d
CRs-Fixed: 1075090
| -rw-r--r-- | core/mac/src/pe/lim/lim_ibss_peer_mgmt.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/core/mac/src/pe/lim/lim_ibss_peer_mgmt.c b/core/mac/src/pe/lim/lim_ibss_peer_mgmt.c index c6a14ad1df4e..fe04d3f6b952 100644 --- a/core/mac/src/pe/lim/lim_ibss_peer_mgmt.c +++ b/core/mac/src/pe/lim/lim_ibss_peer_mgmt.c @@ -668,7 +668,8 @@ void lim_ibss_init(tpAniSirGlobal pMac) * @return None */ -void lim_ibss_delete_all_peers(tpAniSirGlobal pMac, tpPESession psessionEntry) +static void lim_ibss_delete_all_peers(tpAniSirGlobal pMac, + tpPESession psessionEntry) { tLimIbssPeerNode *pCurrNode, *pTempNode; tpDphHashNode pStaDs; |
