From 147467b9f5e4769fcddc9c8375098635e7166f98 Mon Sep 17 00:00:00 2001 From: SACHIN AHUJA Date: Fri, 7 Jul 2023 11:24:46 +0530 Subject: [PATCH] qcacmn: Add the SOCID for WCN6750_V2 chip SOC ID is missing for WCN6750_V2 and as a result correct string for chip is not sent to CNE. This leads to the issue in Wifi calls. Add the SOC ID for WCN6750_V2. CRs-Fixed: 3552566 Change-Id: I80d19742f6ffa1c5b03f1f2576c6e4c0c4a1c1db --- hif/src/hif_hw_version.h | 1 + hif/src/hif_main.c | 5 +++++ 2 files changed, 6 insertions(+) diff --git a/hif/src/hif_hw_version.h b/hif/src/hif_hw_version.h index 1ee1ac174b..42675d43c2 100644 --- a/hif/src/hif_hw_version.h +++ b/hif/src/hif_hw_version.h @@ -46,6 +46,7 @@ #define QCA6490_v2_1 0x400c1211 #define QCA6490_v2 0x400c0200 #define WCN6750_V1 0x40140110 +#define WCN6750_V2 0x40140120 #define WCN6450_V1 0x40200100 #define WCN3990_TALOS 0x40670000 #define WCN3990_MOOREA 0x40090000 diff --git a/hif/src/hif_main.c b/hif/src/hif_main.c index d06d7762a8..c0c56b7f4c 100644 --- a/hif/src/hif_main.c +++ b/hif/src/hif_main.c @@ -399,6 +399,11 @@ static const struct qwlan_hw qwlan_hw_list[] = { .subid = 0, .name = "WCN6750_V1", }, + { + .id = WCN6750_V2, + .subid = 0, + .name = "WCN6750_V2", + }, { .id = WCN6450_V1, .subid = 0,