Commit e922ffb2 authored by Eyal Lebedinsky's avatar Eyal Lebedinsky Committed by Linus Torvalds

[PATCH] wl3501 with old compiler

Fix the ## handling to work with old gcc versions (spaces around the ','
to make token boundaries work).
parent 95a7045a
...@@ -82,7 +82,7 @@ static int pc_debug = PCMCIA_DEBUG; ...@@ -82,7 +82,7 @@ static int pc_debug = PCMCIA_DEBUG;
MODULE_PARM(pc_debug, "i"); MODULE_PARM(pc_debug, "i");
#define dprintk(n, format, args...) \ #define dprintk(n, format, args...) \
{ if (pc_debug > (n)) \ { if (pc_debug > (n)) \
printk(KERN_INFO "%s: " format "\n", __FUNCTION__, ##args); } printk(KERN_INFO "%s: " format "\n", __FUNCTION__ , ##args); }
#else #else
#define dprintk(n, format, args...) #define dprintk(n, format, args...)
#endif #endif
......
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