All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH v2 1/3] wiphy: add beacon bits to RM Enabled Capabilities
@ 2019-11-06 17:57 James Prestwood
  2019-11-06 17:57 ` [PATCH v2 2/3] rrm: add radio resource management module James Prestwood
  2019-11-06 17:57 ` [PATCH v2 3/3] auto-t: add RRM autotest James Prestwood
  0 siblings, 2 replies; 6+ messages in thread
From: James Prestwood @ 2019-11-06 17:57 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] 6+ messages in thread

end of thread, other threads:[~2019-11-06 21:59 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2019-11-06 17:57 [PATCH v2 1/3] wiphy: add beacon bits to RM Enabled Capabilities James Prestwood
2019-11-06 17:57 ` [PATCH v2 2/3] rrm: add radio resource management module James Prestwood
2019-11-06 21:34   ` Denis Kenzior
2019-11-06 21:51     ` James Prestwood
2019-11-06 21:59       ` Denis Kenzior
2019-11-06 17:57 ` [PATCH v2 3/3] auto-t: add RRM autotest James Prestwood

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.