diff options
author | Joe Perches <joe@perches.com> | 2012-05-15 17:20:31 -0400 |
---|---|---|
committer | John W. Linville <linville@tuxdriver.com> | 2012-06-05 15:32:10 -0400 |
commit | d63e9ae3b12fd0c6a3795c9b08de6b476f80b8c3 (patch) | |
tree | 7d7e89004303daafb4d03e607d6863cd1fdce442 /include/net/mac80211.h | |
parent | f0d232080fa5d040aaf73a39d127b003cdd2d0ae (diff) |
net: mac80211: Add and use ht_vdbg debugging macro
Simplify the use of #ifdef CONFIG_MAC80211_HT_DEBUG/#endif
by adding a logging macro to encapsulate the test.
Convert the appropriate uses too.
Signed-off-by: Joe Perches <joe@perches.com>
Signed-off-by: John W. Linville <linville@tuxdriver.com>
Diffstat (limited to 'include/net/mac80211.h')
-rw-r--r-- | include/net/mac80211.h | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/include/net/mac80211.h b/include/net/mac80211.h index 0286c0476e44..808462e2a71d 100644 --- a/include/net/mac80211.h +++ b/include/net/mac80211.h | |||
@@ -3844,4 +3844,17 @@ int ieee80211_add_ext_srates_ie(struct ieee80211_vif *vif, | |||
3844 | */ | 3844 | */ |
3845 | int ieee80211_ave_rssi(struct ieee80211_vif *vif); | 3845 | int ieee80211_ave_rssi(struct ieee80211_vif *vif); |
3846 | 3846 | ||
3847 | /* Extra debugging macros */ | ||
3848 | |||
3849 | #ifdef CONFIG_MAC80211_HT_DEBUG | ||
3850 | #define ht_vdbg(fmt, ...) \ | ||
3851 | pr_debug(fmt, ##__VA_ARGS__) | ||
3852 | #else | ||
3853 | #define ht_vdbg(fmt, ...) \ | ||
3854 | do { \ | ||
3855 | if (0) \ | ||
3856 | pr_debug(fmt, ##__VA_ARGS__); \ | ||
3857 | } while (0) | ||
3858 | #endif | ||
3859 | |||
3847 | #endif /* MAC80211_H */ | 3860 | #endif /* MAC80211_H */ |