Browse Source

qcacmn: Add support for beacon filtering

qcacld-2.0 to qcacld-3.0 propagation

In case of DFS channels and EBT is disabled, beacons are
forwarded to host in every 50msecs which increase power consumption.
Add the changes to set beacon filter once DUT connect to AP.

CRs-Fixed: 973958
Change-Id: I1a9379eacbd13f8dc7fae08923cd91f087d1b2b2
Gupta, Kapil 9 years ago
parent
commit
8b2f77a059
2 changed files with 20 additions and 0 deletions
  1. 9 0
      qdf/inc/qdf_util.h
  2. 11 0
      qdf/linux/src/i_qdf_util.h

+ 9 - 0
qdf/inc/qdf_util.h

@@ -96,6 +96,15 @@ static inline int qdf_status_to_os_return(QDF_STATUS status)
 	return __qdf_status_to_os_return(status);
 }
 
+/**
+ * qdf_set_bit() - set bit in address
+ * @nr: bit number to be set
+ * @addr: address buffer pointer
+ *
+ * Return: none
+ */
+#define qdf_set_bit(nr, addr)    __qdf_set_bit(nr, addr)
+
 /**
  * qdf_container_of - cast a member of a structure out to the containing
  * structure

+ 11 - 0
qdf/linux/src/i_qdf_util.h

@@ -128,6 +128,17 @@ static inline int __qdf_status_to_os_return(QDF_STATUS status)
 	}
 }
 
+/**
+ * __qdf_set_bit() - set bit in address
+ * @nr: bit number to be set
+ * @addr: address buffer pointer
+ *
+ * Return: none
+ */
+static inline void __qdf_set_bit(unsigned int nr, unsigned long *addr)
+{
+	__set_bit(nr, addr);
+}
 
 /**
  * __qdf_set_macaddr_broadcast() - set a QDF MacAddress to the 'broadcast'