summaryrefslogtreecommitdiffstats
path: root/include/net
diff options
context:
space:
mode:
authorJoe Perches <joe@perches.com>2012-05-15 14:20:31 -0700
committerJohn W. Linville <linville@tuxdriver.com>2012-06-05 15:32:10 -0400
commitd63e9ae3b12fd0c6a3795c9b08de6b476f80b8c3 (patch)
tree7d7e89004303daafb4d03e607d6863cd1fdce442 /include/net
parentf0d232080fa5d040aaf73a39d127b003cdd2d0ae (diff)
downloadop-kernel-dev-d63e9ae3b12fd0c6a3795c9b08de6b476f80b8c3.zip
op-kernel-dev-d63e9ae3b12fd0c6a3795c9b08de6b476f80b8c3.tar.gz
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')
-rw-r--r--include/net/mac80211.h13
1 files changed, 13 insertions, 0 deletions
diff --git a/include/net/mac80211.h b/include/net/mac80211.h
index 0286c04..808462e 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,
*/
int ieee80211_ave_rssi(struct ieee80211_vif *vif);
+/* Extra debugging macros */
+
+#ifdef CONFIG_MAC80211_HT_DEBUG
+#define ht_vdbg(fmt, ...) \
+ pr_debug(fmt, ##__VA_ARGS__)
+#else
+#define ht_vdbg(fmt, ...) \
+do { \
+ if (0) \
+ pr_debug(fmt, ##__VA_ARGS__); \
+} while (0)
+#endif
+
#endif /* MAC80211_H */
OpenPOWER on IntegriCloud