Эх сурвалжийг харах

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
Tang Yingying 8 жил өмнө
parent
commit
523322db1a

+ 1 - 1
core/hdd/src/wlan_hdd_main.c

@@ -4988,7 +4988,7 @@ void __hdd_wlan_exit(void)
  *
  * Return: void
  */
-void hdd_skip_acs_scan_timer_handler(void *data)
+static void hdd_skip_acs_scan_timer_handler(void *data)
 {
 	hdd_context_t *hdd_ctx = (hdd_context_t *) data;
 

+ 6 - 3
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 @@ sapAcsChannelInfo acs_ht40_channels24_g[] = {
  * 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 @@ sap_check_n_add_overlapped_chnls(ptSapContext sap_ctx, uint8_t primary_channel)
  *
  * 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)

+ 1 - 1
core/wma/src/wma_dev_if.c

@@ -754,7 +754,7 @@ send_fail_resp:
  *
  * Return: none
  */
-void wma_find_mcc_ap(tp_wma_handle wma, uint8_t vdev_id, bool add)
+static void wma_find_mcc_ap(tp_wma_handle wma, uint8_t vdev_id, bool add)
 {
 	uint8_t i;
 	uint16_t prev_ch_freq = 0;

+ 2 - 2
core/wma/src/wma_features.c

@@ -1529,8 +1529,8 @@ int wma_nan_rsp_event_handler(void *handle, uint8_t *event_buf,
 	return 0;
 }
 #else
-int wma_nan_rsp_event_handler(void *handle, uint8_t *event_buf,
-			      uint32_t len)
+static int wma_nan_rsp_event_handler(void *handle, uint8_t *event_buf,
+				     uint32_t len)
 {
 	return 0;
 }