mirror of
https://github.com/Divested-Mobile/DivestOS-Build.git
synced 2024-10-01 01:35:54 -04:00
64 lines
2.3 KiB
Diff
64 lines
2.3 KiB
Diff
|
From 38d6f16b8583bae6a1881c744ae08d609c99cb7e Mon Sep 17 00:00:00 2001
|
||
|
From: Ashish Kumar Dhanotiya <adhanoti@codeaurora.org>
|
||
|
Date: Fri, 14 Jul 2017 15:25:52 +0530
|
||
|
Subject: qcacld-2.0: Add an attribute to represent PNO/EPNO Request ID
|
||
|
|
||
|
This request ID was wrongly referred from the REQUEST_ID in
|
||
|
enum qca_wlan_vendor_attr_gscan_config_params which is mapped to
|
||
|
QCA_WLAN_VENDOR_ATTR_PNO_PASSPOINT_LIST_PARAM_NUM in PNO Config.
|
||
|
Hence define a different attribute to represent the request ID
|
||
|
for the PNO Config.
|
||
|
|
||
|
CRs-Fixed: 2066628
|
||
|
Change-Id: I2b5efe78605d07d92db564a987ea0ae4ff0a2cc8
|
||
|
---
|
||
|
CORE/HDD/inc/wlan_hdd_cfg80211.h | 2 ++
|
||
|
CORE/HDD/src/wlan_hdd_cfg80211.c | 7 +++++--
|
||
|
2 files changed, 7 insertions(+), 2 deletions(-)
|
||
|
|
||
|
diff --git a/CORE/HDD/inc/wlan_hdd_cfg80211.h b/CORE/HDD/inc/wlan_hdd_cfg80211.h
|
||
|
index 2a2f7d9..291ebd6 100644
|
||
|
--- a/CORE/HDD/inc/wlan_hdd_cfg80211.h
|
||
|
+++ b/CORE/HDD/inc/wlan_hdd_cfg80211.h
|
||
|
@@ -1417,6 +1417,8 @@ enum qca_wlan_vendor_attr_pno_config_params {
|
||
|
*/
|
||
|
QCA_WLAN_VENDOR_ATTR_EPNO_BAND5GHZ_BONUS = 22,
|
||
|
|
||
|
+ /* Unsigned 32-bit value, representing the PNO Request ID */
|
||
|
+ QCA_WLAN_VENDOR_ATTR_PNO_CONFIG_REQUEST_ID = 23,
|
||
|
|
||
|
/* keep last */
|
||
|
QCA_WLAN_VENDOR_ATTR_PNO_AFTER_LAST,
|
||
|
diff --git a/CORE/HDD/src/wlan_hdd_cfg80211.c b/CORE/HDD/src/wlan_hdd_cfg80211.c
|
||
|
index 2ec4ca3..8279b8f 100644
|
||
|
--- a/CORE/HDD/src/wlan_hdd_cfg80211.c
|
||
|
+++ b/CORE/HDD/src/wlan_hdd_cfg80211.c
|
||
|
@@ -908,6 +908,9 @@ wlan_hdd_pno_config_policy[QCA_WLAN_VENDOR_ATTR_PNO_MAX + 1] = {
|
||
|
[QCA_WLAN_VENDOR_ATTR_EPNO_BAND5GHZ_BONUS] = {
|
||
|
.type = NLA_U32
|
||
|
},
|
||
|
+ [QCA_WLAN_VENDOR_ATTR_PNO_CONFIG_REQUEST_ID] = {
|
||
|
+ .type = NLA_U32
|
||
|
+ },
|
||
|
};
|
||
|
|
||
|
static const struct nla_policy
|
||
|
@@ -4772,12 +4775,12 @@ static int __wlan_hdd_cfg80211_set_epno_list(struct wiphy *wiphy,
|
||
|
req_msg->num_networks = num_networks;
|
||
|
|
||
|
/* Parse and fetch request Id */
|
||
|
- if (!tb[QCA_WLAN_VENDOR_ATTR_EXTSCAN_SUBCMD_CONFIG_PARAM_REQUEST_ID]) {
|
||
|
+ if (!tb[QCA_WLAN_VENDOR_ATTR_PNO_CONFIG_REQUEST_ID]) {
|
||
|
hddLog(LOGE, FL("attr request id failed"));
|
||
|
goto fail;
|
||
|
}
|
||
|
req_msg->request_id = nla_get_u32(
|
||
|
- tb[QCA_WLAN_VENDOR_ATTR_EXTSCAN_SUBCMD_CONFIG_PARAM_REQUEST_ID]);
|
||
|
+ tb[QCA_WLAN_VENDOR_ATTR_PNO_CONFIG_REQUEST_ID]);
|
||
|
|
||
|
req_msg->session_id = adapter->sessionId;
|
||
|
hddLog(LOG1, FL("Req Id %u Session Id %d"),
|
||
|
--
|
||
|
cgit v1.1
|
||
|
|