ソースを参照

qcacld-3.0: Convert pcie_config INI related variable to unsigned

Based on requirement for pcie_config INI, convert corresponding
INI boolean variable to unsigned variable.

Change-Id: Ia0045c35a36bafe77e457b95f72fa1db86d2f0d3
CRs-Fixed: 3571497
Aravind Kishore Sukla 1 年間 前
コミット
48a3511147

+ 1 - 1
components/fw_offload/core/inc/wlan_fw_offload_main.h

@@ -265,7 +265,7 @@ struct wlan_fwol_cfg {
 	struct wlan_fwol_ie_allowlist ie_allowlist_cfg;
 	struct wlan_fwol_neighbor_report_cfg neighbor_report_cfg;
 	bool ani_enabled;
-	bool pcie_config;
+	uint8_t pcie_config;
 	bool enable_rts_sifsbursting;
 	uint8_t enable_sifs_burst;
 	uint8_t max_mpdus_inampdu;

+ 2 - 2
components/fw_offload/dispatcher/inc/wlan_fwol_ucfg_api.h

@@ -227,7 +227,7 @@ QDF_STATUS ucfg_fwol_get_ani_enabled(struct wlan_objmgr_psoc *psoc,
  * Return: QDF Status
  */
 QDF_STATUS ucfg_fwol_get_pcie_config(struct wlan_objmgr_psoc *psoc,
-				     bool *pcie_config);
+				     uint8_t *pcie_config);
 
 /**
  * ucfg_get_enable_rts_sifsbursting() - Assigns the enable_rts_sifsbursting
@@ -894,7 +894,7 @@ ucfg_fwol_get_ani_enabled(struct wlan_objmgr_psoc *psoc,
 
 static inline QDF_STATUS
 ucfg_fwol_get_pcie_config(struct wlan_objmgr_psoc *psoc,
-			  bool *pcie_config)
+			  uint8_t *pcie_config)
 {
 	return QDF_STATUS_E_FAILURE;
 }

+ 1 - 1
components/fw_offload/dispatcher/src/wlan_fwol_ucfg_api.c

@@ -323,7 +323,7 @@ QDF_STATUS ucfg_fwol_get_ani_enabled(struct wlan_objmgr_psoc *psoc,
 }
 
 QDF_STATUS ucfg_fwol_get_pcie_config(struct wlan_objmgr_psoc *psoc,
-				     bool *pcie_config)
+				     uint8_t *pcie_config)
 {
 	struct wlan_fwol_psoc_obj *fwol_obj;
 

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

@@ -4622,7 +4622,7 @@ static int hdd_set_pcie_params(struct hdd_context *hdd_ctx,
 			       uint8_t index, struct dev_set_param *param)
 {
 	int ret = 0;
-	bool check_value = false;
+	uint8_t check_value = 0;
 
 	ret = ucfg_fwol_get_pcie_config(hdd_ctx->psoc, &check_value);
 	if (QDF_IS_STATUS_SUCCESS(ret)) {