summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJeff Johnson <jjohnson@codeaurora.org>2016-10-07 10:33:12 -0700
committerqcabuildsw <qcabuildsw@localhost>2016-10-12 11:52:00 -0700
commitc91a4fc47ed95449b8209cea4b32815f09e62c30 (patch)
treeba0451b65100cbdd42af5b0e08acd32012c09f69
parent2249644ff1222b58c5ef7e6e8ac0ba84785e16d3 (diff)
qcacld-3.0: Fix -Wmissing-prototypes in csr_link_list
We want to enable the compiler's -Wmissing-prototypes switch, but there is existing code that is generating warnings. Fix all warnings in csr_link_list. Change-Id: Iac3b07372d0bb3d949eb7f6dc3dd6b9c084619d2 CRs-Fixed: 1075575
-rw-r--r--core/sme/src/csr/csr_link_list.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/core/sme/src/csr/csr_link_list.c b/core/sme/src/csr/csr_link_list.c
index 2e52aa4312e3..6bac6d808ccf 100644
--- a/core/sme/src/csr/csr_link_list.c
+++ b/core/sme/src/csr/csr_link_list.c
@@ -103,7 +103,7 @@ static inline void csr_list_insert_head(tListElem *pHead, tListElem *pEntry)
}
/* Insert pNewEntry before pEntry */
-void csr_list_insert_entry(tListElem *pEntry, tListElem *pNewEntry)
+static void csr_list_insert_entry(tListElem *pEntry, tListElem *pNewEntry)
{
tListElem *pLast;
if (!pEntry) {