Переглянути джерело

qcacld-3.0: Move tSapChSelSpectInfo structure to mlme component

Move tSapChSelSpectInfo structure from sap component to mlme
component so that it can be use by LL_SAP as well

Change-Id: Ic3c2919054326aca3530071df27d425bb78a699a
CRs-Fixed: 3561182
Jyoti Kumari 1 рік тому
батько
коміт
4f6b354391

+ 32 - 0
components/mlme/dispatcher/inc/wlan_mlme_public_struct.h

@@ -3000,4 +3000,36 @@ enum ll_ap_type {
 	LL_AP_TYPE_LT = 1,
 	LL_AP_TYPE_ANY = 2,
 };
+
+/**
+ * struct sap_ch_info - Structure holding all the information required to make
+ * a decision for the best operating channel based on dfs formula.
+ * @chan_freq: Channel frequency found in scanresult
+ * @bss_count: Bss found in scanresult for this channel
+ * @rssi_agr: Max value of rssi among all BSS(es) from scan result
+ * for this channel.
+ * @weight: Weightage of this channel
+ * @weight_copy: copy of the original weight
+ * @valid: Is this a valid center frequency for regulatory domain
+ * @weight_calc_done: Weight calculation done for this channel
+ */
+struct sap_ch_info {
+	uint32_t chan_freq;
+	uint16_t bss_count;
+	int32_t rssi_agr;
+	uint32_t weight;
+	uint32_t weight_copy;
+	bool valid;
+	bool weight_calc_done;
+};
+
+/**
+ * struct sap_sel_ch_info - Wrapper of sap_ch_info structure.
+ * @ch_info: Ptr to the channel information.
+ * @num_ch: Total num of channels.
+ */
+struct sap_sel_ch_info {
+	struct sap_ch_info *ch_info;
+	uint8_t num_ch;
+};
 #endif

Різницю між файлами не показано, бо вона завелика
+ 259 - 254
core/sap/src/sap_ch_select.c


+ 0 - 20
core/sap/src/sap_ch_select.h

@@ -94,24 +94,4 @@ typedef enum {
 	CHANNEL_13,
 	CHANNEL_14
 } tSapChannel;
-
-typedef struct {
-	uint32_t chan_freq;
-	uint16_t bssCount;      /* bss found in scanresult for this channel */
-	int32_t rssiAgr;        /* Max value of rssi among all BSS(es) from scanresult for this channel */
-	uint32_t weight;        /* Weightage of this channel */
-	uint32_t weight_copy;   /* copy of the original weight */
-	bool valid;             /* Is this a valid center frequency for regulatory domain */
-	bool weight_calc_done;
-} tSapSpectChInfo;              /* tDfsSpectChInfo; */
-
-/**
- * Structure holding all the information required to make a
- * decision for the best operating channel based on dfs formula
- */
-
-typedef struct {
-	tSapSpectChInfo *pSpectCh;      /* tDfsSpectChInfo *pSpectCh;  // Ptr to the channels in the entire spectrum band */
-	uint8_t numSpectChans;  /* Total num of channels in the spectrum */
-} tSapChSelSpectInfo;           /* tDfsChSelParams; */
 #endif /* if !defined __SAP_CH_SELECT_H */

Деякі файли не було показано, через те що забагато файлів було змінено