diff options
author | Joe Perches <joe@perches.com> | 2012-01-04 22:40:43 -0500 |
---|---|---|
committer | John W. Linville <linville@tuxdriver.com> | 2012-01-24 14:07:40 -0500 |
commit | 9d833ed752e91c71792dd8ebfd0f865e6a568a37 (patch) | |
tree | a0b03e38ee9a2186523df595c18e3839ab603c1f /drivers/net/wireless/rtlwifi/debug.h | |
parent | 4c48869f5d6e4ee4a773fd67a01e1b934faa57f8 (diff) |
rtlwifi: Convert RT_ASSERT macro to use ##__VA_ARGS__
Consolidate printks to avoid possible message interleaving
and reduce the object size.
Remove unnecessary RT_ASSERT parentheses.
Align arguments.
Coalesce formats.
Remove unnecessary __func__ use as the macro uses it.
$ size drivers/net/wireless/rtlwifi/built-in.o*
text data bss dec hex filename
588901 55333 127216 771450 bc57a drivers/net/wireless/rtlwifi/built-in.o.new
590002 55333 127560 772895 bcb1f drivers/net/wireless/rtlwifi/built-in.o.old
Signed-off-by: Joe Perches <joe@perches.com>
Acked-by: Larry Finger <Larry.Finger@lwfinger.net>
Signed-off-by: John W. Linville <linville@tuxdriver.com>
Diffstat (limited to 'drivers/net/wireless/rtlwifi/debug.h')
-rw-r--r-- | drivers/net/wireless/rtlwifi/debug.h | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/drivers/net/wireless/rtlwifi/debug.h b/drivers/net/wireless/rtlwifi/debug.h index 8b51a828effa..74b6780880f2 100644 --- a/drivers/net/wireless/rtlwifi/debug.h +++ b/drivers/net/wireless/rtlwifi/debug.h | |||
@@ -156,12 +156,11 @@ enum dbgp_flag_e { | |||
156 | DBGP_TYPE_MAX | 156 | DBGP_TYPE_MAX |
157 | }; | 157 | }; |
158 | 158 | ||
159 | #define RT_ASSERT(_exp, fmt) \ | 159 | #define RT_ASSERT(_exp, fmt, ...) \ |
160 | do { \ | 160 | do { \ |
161 | if (!(_exp)) { \ | 161 | if (!(_exp)) { \ |
162 | printk(KERN_DEBUG "%s:%s(): ", \ | 162 | printk(KERN_DEBUG KBUILD_MODNAME ":%s(): " fmt, \ |
163 | KBUILD_MODNAME, __func__); \ | 163 | __func__, ##__VA_ARGS__); \ |
164 | printk fmt; \ | ||
165 | } \ | 164 | } \ |
166 | } while (0) | 165 | } while (0) |
167 | 166 | ||