public inbox for iwd@lists.linux.dev
 help / color / mirror / Atom feed
* [PATCH 1/4] wiphy: make "wiphy" const in wiphy_has_ext_feature
@ 2024-11-25 15:06 James Prestwood
  2024-11-25 15:06 ` [PATCH 2/4] wiphy: add driver quirk for disabling multicast rx (and helper) James Prestwood
                   ` (3 more replies)
  0 siblings, 4 replies; 5+ messages in thread
From: James Prestwood @ 2024-11-25 15:06 UTC (permalink / raw)
  To: iwd; +Cc: James Prestwood

---
 src/wiphy.c | 2 +-
 src/wiphy.h | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/wiphy.c b/src/wiphy.c
index c286bb48..ecc345e9 100644
--- a/src/wiphy.c
+++ b/src/wiphy.c
@@ -643,7 +643,7 @@ bool wiphy_rrm_capable(struct wiphy *wiphy)
 	return false;
 }
 
-bool wiphy_has_ext_feature(struct wiphy *wiphy, uint32_t feature)
+bool wiphy_has_ext_feature(const struct wiphy *wiphy, uint32_t feature)
 {
 	return feature < sizeof(wiphy->ext_features) * 8 &&
 		test_bit(wiphy->ext_features, feature);
diff --git a/src/wiphy.h b/src/wiphy.h
index 43e4aeb3..c527c79d 100644
--- a/src/wiphy.h
+++ b/src/wiphy.h
@@ -119,7 +119,7 @@ bool wiphy_can_randomize_mac_addr(struct wiphy *wiphy);
 bool wiphy_rrm_capable(struct wiphy *wiphy);
 bool wiphy_supports_ext_key_id(struct wiphy *wiphy);
 bool wiphy_has_feature(struct wiphy *wiphy, uint32_t feature);
-bool wiphy_has_ext_feature(struct wiphy *wiphy, uint32_t feature);
+bool wiphy_has_ext_feature(const struct wiphy *wiphy, uint32_t feature);
 uint8_t wiphy_get_max_num_ssids_per_scan(struct wiphy *wiphy);
 uint16_t wiphy_get_max_scan_ie_len(struct wiphy *wiphy);
 uint32_t wiphy_get_max_roc_duration(struct wiphy *wiphy);
-- 
2.34.1


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

end of thread, other threads:[~2024-11-25 17:48 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-11-25 15:06 [PATCH 1/4] wiphy: make "wiphy" const in wiphy_has_ext_feature James Prestwood
2024-11-25 15:06 ` [PATCH 2/4] wiphy: add driver quirk for disabling multicast rx (and helper) James Prestwood
2024-11-25 15:06 ` [PATCH 3/4] dpp: use wiphy_supports_multicast_rx James Prestwood
2024-11-25 15:06 ` [PATCH 4/4] doc: document [DriverQuirks].MulticastRxDisable James Prestwood
2024-11-25 17:48 ` [PATCH 1/4] wiphy: make "wiphy" const in wiphy_has_ext_feature Denis Kenzior

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox