diff options
author | Johannes Berg <johannes.berg@intel.com> | 2018-09-13 14:12:03 +0200 |
---|---|---|
committer | Johannes Berg <johannes.berg@intel.com> | 2018-10-02 09:56:29 +0200 |
commit | e4d4216e91ea31049ba0cde0799ece244410a9f7 (patch) | |
tree | a456ffda4a9e63fa485fbbc63c3104e014f8e9da /net/wireless/core.h | |
parent | mac80211: fix issue with possible txq NULL pointer (diff) | |
download | linux-e4d4216e91ea31049ba0cde0799ece244410a9f7.tar.xz linux-e4d4216e91ea31049ba0cde0799ece244410a9f7.zip |
cfg80211: combine duplicate wdev init code
There's a bit of duplicated code to initialize a wdev, pull it out
into a separate function to call from both places.
Signed-off-by: Johannes Berg <johannes.berg@intel.com>
Diffstat (limited to 'net/wireless/core.h')
-rw-r--r-- | net/wireless/core.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/net/wireless/core.h b/net/wireless/core.h index 7f52ef569320..45fd4e21dbda 100644 --- a/net/wireless/core.h +++ b/net/wireless/core.h @@ -187,6 +187,9 @@ struct wiphy *wiphy_idx_to_wiphy(int wiphy_idx); int cfg80211_switch_netns(struct cfg80211_registered_device *rdev, struct net *net); +void cfg80211_init_wdev(struct cfg80211_registered_device *rdev, + struct wireless_dev *wdev); + static inline void wdev_lock(struct wireless_dev *wdev) __acquires(wdev) { |