Commit e85b4c04 authored by Johannes Stezenbach's avatar Johannes Stezenbach Committed by John W. Linville

rt2x00: remove stray semicolon

The stray semicolon after DEBUG_PRINTK_MSG causes things
like "if (...) WARNING(...); else {}" to fail with syntax error.
Signed-off-by: default avatarJohannes Stezenbach <js@sig21.net>
Acked-by: default avatarGertjan van Wingerde <gwingerde@gmail.com>
Signed-off-by: default avatarIvo van Doorn <IvDoorn@gmail.com>
Signed-off-by: default avatarJohn W. Linville <linville@tuxdriver.com>
parent f615e9a3
...@@ -66,7 +66,7 @@ ...@@ -66,7 +66,7 @@
#ifdef CONFIG_RT2X00_DEBUG #ifdef CONFIG_RT2X00_DEBUG
#define DEBUG_PRINTK(__dev, __kernlvl, __lvl, __msg, __args...) \ #define DEBUG_PRINTK(__dev, __kernlvl, __lvl, __msg, __args...) \
DEBUG_PRINTK_MSG(__dev, __kernlvl, __lvl, __msg, ##__args); DEBUG_PRINTK_MSG(__dev, __kernlvl, __lvl, __msg, ##__args)
#else #else
#define DEBUG_PRINTK(__dev, __kernlvl, __lvl, __msg, __args...) \ #define DEBUG_PRINTK(__dev, __kernlvl, __lvl, __msg, __args...) \
do { } while (0) do { } while (0)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment