diff options
author | Johannes Berg <johannes@sipsolutions.net> | 2009-04-11 07:32:46 -0400 |
---|---|---|
committer | John W. Linville <linville@tuxdriver.com> | 2009-04-22 16:54:45 -0400 |
commit | 7edfab7adef45a09b459cb7f5957f476108f5e77 (patch) | |
tree | 06c79f7103259a28ed27636d6c1ed4eff226b7d7 /net/wireless | |
parent | 4312a86b6840bca503603e918996b139fa3293ba (diff) |
cfg80211: convert mutex assert to macro
That will make the various cases where the WARN_ON
can happen distinguishable.
Signed-off-by: Johannes Berg <johannes@sipsolutions.net>
Signed-off-by: John W. Linville <linville@tuxdriver.com>
Diffstat (limited to 'net/wireless')
-rw-r--r-- | net/wireless/core.h | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/net/wireless/core.h b/net/wireless/core.h index fcee83a0c9bb..02668b02e331 100644 --- a/net/wireless/core.h +++ b/net/wireless/core.h | |||
@@ -73,10 +73,7 @@ bool wiphy_idx_valid(int wiphy_idx) | |||
73 | extern struct mutex cfg80211_mutex; | 73 | extern struct mutex cfg80211_mutex; |
74 | extern struct list_head cfg80211_drv_list; | 74 | extern struct list_head cfg80211_drv_list; |
75 | 75 | ||
76 | static inline void assert_cfg80211_lock(void) | 76 | #define assert_cfg80211_lock() WARN_ON(!mutex_is_locked(&cfg80211_mutex)) |
77 | { | ||
78 | WARN_ON(!mutex_is_locked(&cfg80211_mutex)); | ||
79 | } | ||
80 | 77 | ||
81 | /* | 78 | /* |
82 | * You can use this to mark a wiphy_idx as not having an associated wiphy. | 79 | * You can use this to mark a wiphy_idx as not having an associated wiphy. |