projects
/
openwrt
/
staging
/
blogic.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
f615e9a
)
rt2x00: remove stray semicolon
author
Johannes Stezenbach
<
[email protected]
>
Mon, 13 Dec 2010 11:38:49 +0000
(12:38 +0100)
committer
John W. Linville
<
[email protected]
>
Mon, 13 Dec 2010 20:23:36 +0000
(15:23 -0500)
The stray semicolon after DEBUG_PRINTK_MSG causes things
like "if (...) WARNING(...); else {}" to fail with syntax error.
Signed-off-by: Johannes Stezenbach <
[email protected]
>
Acked-by: Gertjan van Wingerde <
[email protected]
>
Signed-off-by: Ivo van Doorn <
[email protected]
>
Signed-off-by: John W. Linville <
[email protected]
>
drivers/net/wireless/rt2x00/rt2x00.h
patch
|
blob
|
history
diff --git
a/drivers/net/wireless/rt2x00/rt2x00.h
b/drivers/net/wireless/rt2x00/rt2x00.h
index 28ea59ab2b0617e058134baee704a6e3f68d63cf..c254d5a62c7da47d15f2e03c0bb3f8f8fbac9068 100644
(file)
--- a/
drivers/net/wireless/rt2x00/rt2x00.h
+++ b/
drivers/net/wireless/rt2x00/rt2x00.h
@@
-66,7
+66,7
@@
#ifdef CONFIG_RT2X00_DEBUG
#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
#define DEBUG_PRINTK(__dev, __kernlvl, __lvl, __msg, __args...) \
do { } while (0)