diff options
author | David S. Miller <davem@davemloft.net> | 2022-03-01 14:45:55 +0000 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2022-03-01 14:45:55 +0000 |
commit | b8d06ce712e37c6a6e74bf1624a0f4a412cd6508 (patch) | |
tree | 3058f1a424059d0c258303bcd246e5f1c5387723 /include | |
parent | 7cf5aa32e392dfa1e671ef2f704b729a7b39c7f9 (diff) | |
parent | a12f76345e026f1b300a0d17c56f020b6949b093 (diff) | |
download | linux-b8d06ce712e37c6a6e74bf1624a0f4a412cd6508.tar.bz2 |
Merge tag 'wireless-for-net-2022-03-01' of git://git.kernel.org/pub/scm/linux/kernel/git/wireless/wireless
johannes Berg says:
====================
Some last-minute fixes:
* rfkill
- add missing rfill_soft_blocked() when disabled
* cfg80211
- handle a nla_memdup() failure correctly
- fix CONFIG_CFG80211_EXTRA_REGDB_KEYDIR typo in
Makefile
* mac80211
- fix EAPOL handling in 802.3 RX path
- reject setting up aggregation sessions before
connection is authorized to avoid timeouts or
similar
- handle some SAE authentication steps correctly
- fix AC selection in mesh forwarding
* iwlwifi
- remove TWT support as it causes firmware crashes
when the AP isn't behaving correctly
- check debugfs pointer before dereferncing it
====================
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'include')
-rw-r--r-- | include/linux/rfkill.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/include/linux/rfkill.h b/include/linux/rfkill.h index c35f3962dc4f..373003ace639 100644 --- a/include/linux/rfkill.h +++ b/include/linux/rfkill.h @@ -308,6 +308,11 @@ static inline bool rfkill_blocked(struct rfkill *rfkill) return false; } +static inline bool rfkill_soft_blocked(struct rfkill *rfkill) +{ + return false; +} + static inline enum rfkill_type rfkill_find_type(const char *name) { return RFKILL_TYPE_ALL; |