Browse Source

qcacmn: Remove redundant DBS HW mode request

Remove redundant DBS HW mode request from
pm_next_action_two_connection_dbs_2x2_table. For 2x2 DBS HW even for first
connection if it is on 2.4G, DBS will get requested. Hence no need to
request again for second connection on the other band.

Change-Id: I17db8de5ed7a60f556cc8eeed59bbbfe0d63e795
CRs-Fixed: 2199420
Tushnim Bhattacharyya 7 years ago
parent
commit
8ede0d39ac

+ 3 - 3
umac/cmn_services/policy_mgr/src/wlan_policy_mgr_tables_2x2_dbs_i.h

@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2012-2017 The Linux Foundation. All rights reserved.
+ * Copyright (c) 2012-2018 The Linux Foundation. All rights reserved.
  *
  * Previously licensed under the ISC license by Qualcomm Atheros, Inc.
  *
@@ -1306,8 +1306,8 @@ static policy_mgr_next_action_two_connection_table_type
 	[PM_P2P_GO_24_2x2] = {PM_NOP,		PM_NOP},
 	[PM_P2P_GO_5_1x1] = {PM_DBS,		PM_SBS},
 	[PM_P2P_GO_5_2x2] = {PM_DBS,		PM_SBS_DOWNGRADE},
-	[PM_SAP_24_1x1] = {PM_NOP,		PM_DBS},
-	[PM_SAP_24_2x2] = {PM_NOP,		PM_DBS},
+	[PM_SAP_24_1x1] = {PM_NOP,		PM_NOP},
+	[PM_SAP_24_2x2] = {PM_NOP,		PM_NOP},
 	[PM_SAP_5_1x1] = {PM_DBS,		PM_SBS},
 	[PM_SAP_5_2x2] = {PM_DBS,		PM_SBS_DOWNGRADE},
 	[PM_IBSS_24_1x1] = {PM_NOP,		PM_NOP},