aboutsummaryrefslogtreecommitdiffstats
path: root/include/linux/mmdebug.h
diff options
context:
space:
mode:
authorIngo Molnar <mingo@elte.hu>2008-06-19 13:28:11 +0200
committerIngo Molnar <mingo@elte.hu>2008-06-19 13:33:11 +0200
commit7aa413def76146f7b3784228556d9e4bc562eab3 (patch)
treea90291b6fd72f46f33bc5af07813784c0468d23d /include/linux/mmdebug.h
parentx86, MM: virtual address debug, v2 (diff)
downloadlinux-dev-7aa413def76146f7b3784228556d9e4bc562eab3.tar.xz
linux-dev-7aa413def76146f7b3784228556d9e4bc562eab3.zip
x86, MM: virtual address debug, cleanups
Signed-off-by: Ingo Molnar <mingo@elte.hu>
Diffstat (limited to 'include/linux/mmdebug.h')
-rw-r--r--include/linux/mmdebug.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/linux/mmdebug.h b/include/linux/mmdebug.h
index 860ed1a71bbe..8a5509877192 100644
--- a/include/linux/mmdebug.h
+++ b/include/linux/mmdebug.h
@@ -6,13 +6,13 @@
#ifdef CONFIG_DEBUG_VM
#define VM_BUG_ON(cond) BUG_ON(cond)
#else
-#define VM_BUG_ON(cond) do { } while(0)
+#define VM_BUG_ON(cond) do { } while (0)
#endif
#ifdef CONFIG_DEBUG_VIRTUAL
#define VIRTUAL_BUG_ON(cond) BUG_ON(cond)
#else
-#define VIRTUAL_BUG_ON(cond) do { } while(0)
+#define VIRTUAL_BUG_ON(cond) do { } while (0)
#endif
#endif