diff options
author | Joe Perches <joe@perches.com> | 2010-07-26 17:40:00 -0400 |
---|---|---|
committer | John W. Linville <linville@tuxdriver.com> | 2010-07-27 15:14:13 -0400 |
commit | 073730d771d97bb5bbef080bd5d6d0a5af7cba7d (patch) | |
tree | 711dc85fa6253408de4fe0766ea1b8219fd6c034 /include/net/cfg80211.h | |
parent | 903c99d8d6d055c56e7fdfba4602c05e357fa186 (diff) |
wireless: Convert wiphy_debug macro to function
Save a few bytes of text
(allyesconfig)
$ size drivers/net/wireless/built-in.o*
text data bss dec hex filename
3924568 100548 871056 4896172 4ab5ac drivers/net/wireless/built-in.o.new
3926520 100548 871464 4898532 4abee4 drivers/net/wireless/built-in.o.old
$ size net/wireless/core.o*
text data bss dec hex filename
12843 216 3768 16827 41bb net/wireless/core.o.new
12328 216 3656 16200 3f48 net/wireless/core.o
Signed-off-by: Joe Perches <joe@perches.com>
Signed-off-by: John W. Linville <linville@tuxdriver.com>
Diffstat (limited to 'include/net/cfg80211.h')
-rw-r--r-- | include/net/cfg80211.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/include/net/cfg80211.h b/include/net/cfg80211.h index 7fe774c2d43d..ae80f8fb17fe 100644 --- a/include/net/cfg80211.h +++ b/include/net/cfg80211.h | |||
@@ -2442,8 +2442,9 @@ void cfg80211_cqm_rssi_notify(struct net_device *dev, | |||
2442 | wiphy_printk(KERN_NOTICE, wiphy, format, ##args) | 2442 | wiphy_printk(KERN_NOTICE, wiphy, format, ##args) |
2443 | #define wiphy_info(wiphy, format, args...) \ | 2443 | #define wiphy_info(wiphy, format, args...) \ |
2444 | wiphy_printk(KERN_INFO, wiphy, format, ##args) | 2444 | wiphy_printk(KERN_INFO, wiphy, format, ##args) |
2445 | #define wiphy_debug(wiphy, format, args...) \ | 2445 | |
2446 | wiphy_printk(KERN_DEBUG, wiphy, format, ##args) | 2446 | int wiphy_debug(const struct wiphy *wiphy, const char *format, ...) |
2447 | __attribute__ ((format (printf, 2, 3))); | ||
2447 | 2448 | ||
2448 | #if defined(DEBUG) | 2449 | #if defined(DEBUG) |
2449 | #define wiphy_dbg(wiphy, format, args...) \ | 2450 | #define wiphy_dbg(wiphy, format, args...) \ |