diff options
| author | Vasanthakumar Thiagarajan <vthiagar@qti.qualcomm.com> | 2014-06-11 15:50:08 +0530 |
|---|---|---|
| committer | Pitani Venkata Rajesh Kumar <c_vpitan@qti.qualcomm.com> | 2014-06-15 00:39:52 +0530 |
| commit | 92cc733c1cc7e14ccd1acff491a71de412ff2b92 (patch) | |
| tree | cfa3f79de5945408928de2807da4e7fcd96de157 | |
| parent | b6ceaa2771b3592642e863996ce59513c94aa70b (diff) | |
qcacld/wma: Enable QOS when the peer is ht capable
Some APs do not advertise WMM IE but are ht capable.
To interoperate with these kind of APs enable qos when AP is
ht/vht capable
Change-Id: Ia1177e3c86443bb94e7c11bc9186291406dbfe59
CRs-Fixed: 678706
| -rw-r--r-- | CORE/SERVICES/WMA/wma.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/CORE/SERVICES/WMA/wma.c b/CORE/SERVICES/WMA/wma.c index 0ec45825aaaa..66a9a7fe61c7 100644 --- a/CORE/SERVICES/WMA/wma.c +++ b/CORE/SERVICES/WMA/wma.c @@ -7745,7 +7745,7 @@ static int32_t wmi_unified_send_peer_assoc(tp_wma_handle wma, } if (params->htCapable) { - cmd->peer_flags |= WMI_PEER_HT; + cmd->peer_flags |= (WMI_PEER_HT | WMI_PEER_QOS); cmd->peer_rate_caps |= WMI_RC_HT_FLAG; } @@ -7759,7 +7759,7 @@ static int32_t wmi_unified_send_peer_assoc(tp_wma_handle wma, #ifdef WLAN_FEATURE_11AC if (params->vhtCapable) { - cmd->peer_flags |= (WMI_PEER_HT | WMI_PEER_VHT); + cmd->peer_flags |= (WMI_PEER_HT | WMI_PEER_VHT | WMI_PEER_QOS); cmd->peer_rate_caps |= WMI_RC_HT_FLAG; } |
