All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH v5 1/3] wiphy: add beacon bits to RM Enabled Capabilities
@ 2019-11-07  0:59 James Prestwood
  2019-11-07  0:59 ` [PATCH v5 2/3] rrm: add radio resource management module James Prestwood
                   ` (2 more replies)
  0 siblings, 3 replies; 4+ messages in thread
From: James Prestwood @ 2019-11-07  0:59 UTC (permalink / raw)
  To: iwd

[-- Attachment #1: Type: text/plain, Size: 676 bytes --]

This tells AP's that we support Passive, Active, and Table beacon
measurements.
---
 src/wiphy.c | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/src/wiphy.c b/src/wiphy.c
index ef22c0d3..eb0dfcc9 100644
--- a/src/wiphy.c
+++ b/src/wiphy.c
@@ -1037,6 +1037,8 @@ static void wiphy_setup_rm_enabled_capabilities(struct wiphy *wiphy)
 
 	wiphy->rm_enabled_capabilities[0] = IE_TYPE_RM_ENABLED_CAPABILITIES;
 	wiphy->rm_enabled_capabilities[1] = 5;
+	/* Bits: Passive (4), Active (5), and Beacon Table (6) capabilities */
+	wiphy->rm_enabled_capabilities[2] = 0x70;
 
 	/*
 	 * TODO: Support at least Link Measurement if TX_POWER_INSERTION is
-- 
2.17.1

^ permalink raw reply related	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2019-11-07 18:26 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-11-07  0:59 [PATCH v5 1/3] wiphy: add beacon bits to RM Enabled Capabilities James Prestwood
2019-11-07  0:59 ` [PATCH v5 2/3] rrm: add radio resource management module James Prestwood
2019-11-07  0:59 ` [PATCH v5 3/3] auto-t: add RRM autotest James Prestwood
2019-11-07 18:26 ` [PATCH v5 1/3] wiphy: add beacon bits to RM Enabled Capabilities Denis Kenzior

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.