Commit de29ee9f authored by Andrew Morton's avatar Andrew Morton Committed by Linus Torvalds

[PATCH] mmc build fix

Usual workaround for the gcc-2.95.x macro expansion bug.
Signed-off-by: default avatarAndrew Morton <akpm@osdl.org>
Signed-off-by: default avatarLinus Torvalds <torvalds@osdl.org>
parent 0c6dac86
...@@ -33,7 +33,7 @@ ...@@ -33,7 +33,7 @@
#define DBG(x...) \ #define DBG(x...) \
printk(KERN_DEBUG DRIVER_NAME ": " x) printk(KERN_DEBUG DRIVER_NAME ": " x)
#define DBGF(f, x...) \ #define DBGF(f, x...) \
printk(KERN_DEBUG DRIVER_NAME " [%s()]: " f, __func__, ##x) printk(KERN_DEBUG DRIVER_NAME " [%s()]: " f, __func__ , ##x)
#else #else
#define DBG(x...) do { } while (0) #define DBG(x...) do { } while (0)
#define DBGF(x...) do { } while (0) #define DBGF(x...) 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