summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--core/hdd/src/wlan_hdd_main.c6
-rw-r--r--core/mac/inc/qwlan_version.h4
2 files changed, 7 insertions, 3 deletions
diff --git a/core/hdd/src/wlan_hdd_main.c b/core/hdd/src/wlan_hdd_main.c
index b516be33874a..07235498e547 100644
--- a/core/hdd/src/wlan_hdd_main.c
+++ b/core/hdd/src/wlan_hdd_main.c
@@ -1242,8 +1242,12 @@ static void hdd_update_tgt_ht_cap(hdd_context_t *hdd_ctx,
enable_tx_stbc = pconfig->enableTxSTBC;
- if (pconfig->enable2x2 && (cfg->num_rf_chains == 2))
+ if (pconfig->enable2x2 && (cfg->num_rf_chains == 2)) {
pconfig->enable2x2 = 1;
+ } else {
+ pconfig->enable2x2 = 0;
+ enable_tx_stbc = 0;
+ }
if (!(cfg->ht_tx_stbc && pconfig->enable2x2))
enable_tx_stbc = 0;
diff --git a/core/mac/inc/qwlan_version.h b/core/mac/inc/qwlan_version.h
index a007c98b67f9..3abcf1db3726 100644
--- a/core/mac/inc/qwlan_version.h
+++ b/core/mac/inc/qwlan_version.h
@@ -32,9 +32,9 @@
#define QWLAN_VERSION_MAJOR 5
#define QWLAN_VERSION_MINOR 1
#define QWLAN_VERSION_PATCH 1
-#define QWLAN_VERSION_EXTRA "U"
+#define QWLAN_VERSION_EXTRA "V"
#define QWLAN_VERSION_BUILD 77
-#define QWLAN_VERSIONSTR "5.1.1.77U"
+#define QWLAN_VERSIONSTR "5.1.1.77V"
#endif /* QWLAN_VERSION_H */