Browse Source

qcacld-3.0: Modify solution provider info field

Modify the solution provider information field length
in feature_set to 3 length character.

Change-Id: I9a908e58a1db2d78306160abb47cd666e785df84
CRs-Fixed: 3303728
Aditya Kodukula 2 years ago
parent
commit
a6ea11e559
1 changed files with 13 additions and 3 deletions
  1. 13 3
      core/hdd/src/wlan_hdd_sysfs_wifi_features.c

+ 13 - 3
core/hdd/src/wlan_hdd_sysfs_wifi_features.c

@@ -32,11 +32,21 @@ static ssize_t  __hdd_sysfs_feature_set_show(struct hdd_context *hdd_ctx,
 					     char *buf)
 {
 	ssize_t ret_val = 0;
-	uint8_t i;
-
-	for (i = 0; i < hdd_ctx->oem_data_len; i++)
+	uint8_t i = 0;
+	char const *solution_provider = "QCT";
+
+	for (i = 0; i < hdd_ctx->oem_data_len; i++) {
+		/* The Solution Provider Info is from index 2 to 4 */
+		if (i == 2) {
+			ret_val += scnprintf(buf + ret_val, PAGE_SIZE - ret_val,
+					     "%s", solution_provider);
+			i = i + 2;
+			continue;
+		}
 		ret_val += scnprintf(buf + ret_val, PAGE_SIZE - ret_val, "%.2x",
 				     hdd_ctx->oem_data[i]);
+	}
+
 	buf[ret_val] = '\n';
 
 	return ret_val;