Browse Source

cnss2: Add code to parse wlan sw ctrl gpio in get_dev_cfg_node

Add code to parse wlan sw ctrl gpio in cnss_get_dev_cfg_node so
that entire handling of subnodes is restricted to one function.

Change-Id: I13ccb0b3de082e396939c8b37e738b149ccd3095
Mohammed Siddiq 2 years ago
parent
commit
c4f490a979
1 changed files with 12 additions and 6 deletions
  1. 12 6
      cnss2/main.c

+ 12 - 6
cnss2/main.c

@@ -3745,16 +3745,24 @@ static int cnss_get_dev_cfg_node(struct cnss_plat_data *plat_priv)
 {
 	struct device_node *child;
 	u32 id, i;
-	int id_n, ret;
-	int wlan_sw_ctrl_gpio = plat_priv->pinctrl_info.wlan_sw_ctrl_gpio;
+	int id_n,  device_identifier_gpio, ret;
 	u8 gpio_value;
 
 
 	if (!plat_priv->is_converged_dt)
 		return 0;
 
-	gpio_value = gpio_get_value(wlan_sw_ctrl_gpio);
-	cnss_pr_dbg("Value of WLAN_SW_CTRL GPIO: %d\n", gpio_value);
+	/* Parses the wlan_sw_ctrl gpio which is used to identify device */
+	ret = cnss_get_wlan_sw_ctrl(plat_priv);
+	if (ret) {
+		cnss_pr_dbg("Failed to parse wlan_sw_ctrl gpio, error:%d", ret);
+		return ret;
+	}
+
+	device_identifier_gpio = plat_priv->pinctrl_info.wlan_sw_ctrl_gpio;
+
+	gpio_value = gpio_get_value(device_identifier_gpio);
+	cnss_pr_dbg("Value of Device Identifier GPIO: %d\n", gpio_value);
 
 	for_each_available_child_of_node(plat_priv->plat_dev->dev.of_node,
 					 child) {
@@ -3840,8 +3848,6 @@ static int cnss_probe(struct platform_device *plat_dev)
 	plat_priv->use_fw_path_with_prefix =
 		cnss_use_fw_path_with_prefix(plat_priv);
 
-	cnss_get_wlan_sw_ctrl(plat_priv);
-
 	ret = cnss_get_dev_cfg_node(plat_priv);
 	if (ret) {
 		cnss_pr_err("Failed to get device cfg node, err = %d\n", ret);