summaryrefslogtreecommitdiff
path: root/uapi/linux
diff options
context:
space:
mode:
authorVignesh Viswanathan <viswanat@codeaurora.org>2017-11-09 16:08:51 +0530
committersnandini <snandini@codeaurora.org>2017-11-09 20:48:42 -0800
commitda67336bee79aa389a78720c271b81dc35419f35 (patch)
tree978e02b81597e6b60ead23f2534a60e246ef9395 /uapi/linux
parent312024c62409785e9dfcc69f2205f80e880107e2 (diff)
qcacld-3.0: Fix Vendor attribute enum for enable/disable FILS
The current value defined for vendor attribute QCA_WLAN_VENDOR_ATTR_CONFIG_DISABLE_FILS mismatches with the framework definition for the same. Fix the value to match with the framework changes Change-Id: I6a6f9b9efb23c6ba55c9fb1fca16193f3f9326b6 CRs-Fixed: 2140951
Diffstat (limited to 'uapi/linux')
-rw-r--r--uapi/linux/qca_vendor.h8
1 files changed, 7 insertions, 1 deletions
diff --git a/uapi/linux/qca_vendor.h b/uapi/linux/qca_vendor.h
index c3fb589ea146..4bc2edbba925 100644
--- a/uapi/linux/qca_vendor.h
+++ b/uapi/linux/qca_vendor.h
@@ -3185,10 +3185,16 @@ enum qca_wlan_vendor_attr_config {
/* 8-bit unsigned value to set the total beacon miss count */
QCA_WLAN_VENDOR_ATTR_CONFIG_TOTAL_BEACON_MISS_COUNT = 52,
+ /* Unsigned 32-bit value to configure the number of continuous
+ * Beacon Miss which shall be used by the firmware to penalize
+ * the RSSI for BTC.
+ */
+ QCA_WLAN_VENDOR_ATTR_CONFIG_PENALIZE_AFTER_NCONS_BEACON_MISS_BTC = 53,
+
/* 8-bit unsigned value to configure the driver and below layers to
* enable/disable all fils features.
* 0-enable, 1-disable */
- QCA_WLAN_VENDOR_ATTR_CONFIG_DISABLE_FILS = 53,
+ QCA_WLAN_VENDOR_ATTR_CONFIG_DISABLE_FILS = 54,
QCA_WLAN_VENDOR_ATTR_CONFIG_AFTER_LAST,
QCA_WLAN_VENDOR_ATTR_CONFIG_MAX =
QCA_WLAN_VENDOR_ATTR_CONFIG_AFTER_LAST - 1,