diff options
| author | Jeff Johnson <jjohnson@codeaurora.org> | 2016-10-06 18:39:59 -0700 |
|---|---|---|
| committer | qcabuildsw <qcabuildsw@localhost> | 2016-10-11 23:47:11 -0700 |
| commit | 9902821db328ba97f55f2a6f9de92835a9f3bdd4 (patch) | |
| tree | 90957f0b9cc8eb6dcddffc8110506e060ee1b1fd | |
| parent | 7e5ac8eb10b25e2d0e0f555b0fbd3966719f505c (diff) | |
qcacld-3.0: Fix -Wmissing-prototypes in dph_hash_table
We want to enable the compiler's -Wmissing-prototypes switch, but
there is existing code that is generating warnings. Fix all warnings
in dph_hash_table.
Change-Id: I9513060929343a61c329e55e15f7e6ec18d1e166
CRs-Fixed: 1075090
| -rw-r--r-- | core/mac/src/dph/dph_hash_table.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/core/mac/src/dph/dph_hash_table.c b/core/mac/src/dph/dph_hash_table.c index 6ff817c03b5d..ae22dd7973fb 100644 --- a/core/mac/src/dph/dph_hash_table.c +++ b/core/mac/src/dph/dph_hash_table.c @@ -96,7 +96,8 @@ void dph_hash_table_class_init(tpAniSirGlobal pMac, * @return None */ -uint16_t hash_function(tpAniSirGlobal pMac, uint8_t staAddr[], uint16_t numSta) +static uint16_t hash_function(tpAniSirGlobal pMac, uint8_t staAddr[], + uint16_t numSta) { int i; uint16_t sum = 0; |
