Commit 7ce645b9 authored by Dave Jones's avatar Dave Jones Committed by Linus Torvalds

[PATCH] Remove unneeded ; from macros in i8042

parent 8ef464f9
...@@ -103,11 +103,11 @@ ...@@ -103,11 +103,11 @@
#ifdef DEBUG #ifdef DEBUG
static unsigned long i8042_start; static unsigned long i8042_start;
#define dbg_init() do { i8042_start = jiffies; } while (0); #define dbg_init() do { i8042_start = jiffies; } while (0)
#define dbg(format, arg...) printk(KERN_DEBUG __FILE__ ": " format " [%d]\n" ,\ #define dbg(format, arg...) printk(KERN_DEBUG __FILE__ ": " format " [%d]\n" ,\
## arg, (int) (jiffies - i8042_start)) ## arg, (int) (jiffies - i8042_start))
#else #else
#define dbg_init() do { } while (0); #define dbg_init() do { } while (0)
#define dbg(format, arg...) do {} while (0) #define dbg(format, arg...) do {} while (0)
#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