mirror of
https://git.kernel.org/pub/scm/network/wireless/iwd.git
synced 2025-02-02 06:44:13 +01:00
wiphy: Use ell's set_bit
This commit is contained in:
parent
17cf4da726
commit
666402870e
@ -1159,18 +1159,18 @@ static void wiphy_set_station_capability_bits(struct wiphy *wiphy)
|
||||
anqp_disabled = true;
|
||||
|
||||
/* Set BSS Transition Management */
|
||||
util_set_bit(ext_capa + 2, 19);
|
||||
set_bit(ext_capa + 2, 19);
|
||||
|
||||
/* Set Interworking */
|
||||
if (!anqp_disabled)
|
||||
util_set_bit(ext_capa + 2, 31);
|
||||
set_bit(ext_capa + 2, 31);
|
||||
|
||||
/* Set QoS Map */
|
||||
if (wiphy->support_qos_set_map)
|
||||
util_set_bit(ext_capa + 2, 32);
|
||||
set_bit(ext_capa + 2, 32);
|
||||
|
||||
/* Set FILS */
|
||||
util_set_bit(ext_capa + 2, 72);
|
||||
set_bit(ext_capa + 2, 72);
|
||||
}
|
||||
|
||||
static void wiphy_setup_rm_enabled_capabilities(struct wiphy *wiphy)
|
||||
|
Loading…
Reference in New Issue
Block a user