瀏覽代碼

icnss2: Add two vectors for DP in wcn6450 msi config

Add two vectors for DP in wcn6450 msi config which will
be used in monitor mode and increase number of ce interrupts
to 12 for wcn6450.

Change-Id: I386c98310441fd7c4f9dc8b4cfc7f2da727fe35e
CRs-Fixed: 3629007
Sandeep Singh 1 年之前
父節點
當前提交
41022800bc
共有 1 個文件被更改,包括 4 次插入3 次删除
  1. 4 3
      icnss2/main.c

+ 4 - 3
icnss2/main.c

@@ -3129,10 +3129,11 @@ static struct icnss_msi_config msi_config_wcn6750 = {
 };
 };
 
 
 static struct icnss_msi_config msi_config_wcn6450 = {
 static struct icnss_msi_config msi_config_wcn6450 = {
-	.total_vectors = 10,
-	.total_users = 1,
+	.total_vectors = 14,
+	.total_users = 2,
 	.users = (struct icnss_msi_user[]) {
 	.users = (struct icnss_msi_user[]) {
-		{ .name = "CE", .num_vectors = 10, .base_vector = 0 },
+		{ .name = "CE", .num_vectors = 12, .base_vector = 0 },
+		{ .name = "DP", .num_vectors = 2, .base_vector = 12 },
 	},
 	},
 };
 };