Browse Source

cnss2: Add RC_EP_ULTRASHORT_CHANNEL in cnss feature list

Add RC_EP_ULTRASHORT_CHANNEL in cnss feature if it
is enabled in dtsi and indicate it to wlan fw.

Change-Id: Ic70c4b1b2dd637f11c2e2b281521f2094a9a2fe9
CRs-Fixed: 3323608
Sandeep Singh 2 years ago
parent
commit
866685439c
1 changed files with 4 additions and 0 deletions
  1. 4 0
      cnss2/main.c

+ 4 - 0
cnss2/main.c

@@ -3834,6 +3834,10 @@ static int cnss_misc_init(struct cnss_plat_data *plat_priv)
 	    cnss_get_host_build_type() == QMI_HOST_BUILD_TYPE_PRIMARY_V01)
 		plat_priv->sram_dump = kcalloc(SRAM_DUMP_SIZE, 1, GFP_KERNEL);
 
+	if (of_property_read_bool(plat_priv->plat_dev->dev.of_node,
+				  "qcom,rc-ep-short-channel"))
+		cnss_set_feature_list(plat_priv, CNSS_RC_EP_ULTRASHORT_CHANNEL_V01);
+
 	return 0;
 }