qcacld-3.0: Add "static" before function to fix compilation error

Some functions are only used in the file which it is defined
in. Add "static" before function to fix compilation error.

Change-Id: Ie99c8e2a2c4dd6564c19876f8456a47786d3e5cb
CRs-Fixed: 1112463
diff --git a/core/sap/src/sap_ch_select.c b/core/sap/src/sap_ch_select.c
index dfbc660..37b8e27 100644
--- a/core/sap/src/sap_ch_select.c
+++ b/core/sap/src/sap_ch_select.c
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2012-2016 The Linux Foundation. All rights reserved.
+ * Copyright (c) 2012-2017 The Linux Foundation. All rights reserved.
  *
  * Previously licensed under the ISC license by Qualcomm Atheros, Inc.
  *
@@ -81,6 +81,9 @@
 		acs_band = eCSR_DOT11_MODE_abg; \
 }
 
+#define GET_IE_LEN_IN_BSS_DESC(lenInBss) (lenInBss + sizeof(lenInBss) - \
+			((uintptr_t)OFFSET_OF(tSirBssDescription, ieFields)))
+
 #ifdef FEATURE_WLAN_CH_AVOID
 sapSafeChannelType safe_channels[NUM_CHANNELS] = {
 	{1, true},
@@ -186,7 +189,7 @@
  * Return: true: if channel was added or already present
  *   else false: if channel list was already full.
  */
-bool
+static bool
 sap_check_n_add_channel(ptSapContext sap_ctx,
 			uint8_t new_channel)
 {
@@ -283,7 +286,7 @@
  *
  * Return: void
  */
-void sap_process_avoid_ie(tHalHandle hal,
+static void sap_process_avoid_ie(tHalHandle hal,
 			  ptSapContext sap_ctx,
 			  tScanResultHandle scan_result,
 			  tSapChSelSpectInfo *spect_info)