diff options
| author | Jeff Johnson <jjohnson@codeaurora.org> | 2016-10-06 18:37:52 -0700 |
|---|---|---|
| committer | qcabuildsw <qcabuildsw@localhost> | 2016-10-11 23:47:09 -0700 |
| commit | 7e5ac8eb10b25e2d0e0f555b0fbd3966719f505c (patch) | |
| tree | 7033971d8dd6b5a26faee50719f6e60036afc7ea | |
| parent | 414e9f39a1cfc76ccacdad79bd017b6739baf52c (diff) | |
qcacld-3.0: Fix -Wmissing-prototypes in cfg_api
We want to enable the compiler's -Wmissing-prototypes switch, but
there is existing code that is generating warnings. Fix all warnings
in cfg_api.
Change-Id: I6c282c78da047a9979b90c52fdcfd7b1b7b3b46e
CRs-Fixed: 1075090
| -rw-r--r-- | core/mac/src/cfg/cfg_api.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/mac/src/cfg/cfg_api.c b/core/mac/src/cfg/cfg_api.c index c351063cff4c..8b15ba20a42f 100644 --- a/core/mac/src/cfg/cfg_api.c +++ b/core/mac/src/cfg/cfg_api.c @@ -71,7 +71,7 @@ uint32_t cfg_need_restart(tpAniSirGlobal pMac, uint16_t cfgId) return !!(pMac->cfg.gCfgEntry[cfgId].control & CFG_CTL_RESTART); } -void cfg_get_strindex(tpAniSirGlobal pMac, uint16_t cfgId) +static void cfg_get_strindex(tpAniSirGlobal pMac, uint16_t cfgId) { uint16_t i = 0; |
