summaryrefslogtreecommitdiff
path: root/yportenv_single.h
diff options
context:
space:
mode:
authorCharles Manning <cdhmanning@gmail.com>2011-03-31 15:13:03 +1300
committerCharles Manning <cdhmanning@gmail.com>2011-03-31 15:13:03 +1300
commit2c98f380f6e28ef71d4d7a8a174cc22b0481f102 (patch)
tree1f229b0431eb421e54799498932d03e6cc82e1ca /yportenv_single.h
parentbf4900527f7eab3a629498f2aedbaebf259a6f7a (diff)
yaffs: More mainlining cleanup
Signed-off-by: Charles Manning <cdhmanning@gmail.com>
Diffstat (limited to 'yportenv_single.h')
-rw-r--r--yportenv_single.h7
1 files changed, 5 insertions, 2 deletions
diff --git a/yportenv_single.h b/yportenv_single.h
index aa7c22b..d819475 100644
--- a/yportenv_single.h
+++ b/yportenv_single.h
@@ -49,11 +49,14 @@
#define compile_time_assertion(assertion) \
({ int x = __builtin_choose_expr(assertion, 0, (void)0); (void) x; })
-
+#ifdef CONFIG_YAFFS_DEBUG
#define yaffs_trace(msk, fmt, ...) do { \
if (yaffs_trace_mask & (msk)) \
printk(KERN_DEBUG "yaffs: " fmt "\n", ##__VA_ARGS__); \
} while (0)
-
+#else
+#define yaffs_trace(msk, fmt, ...) do { \
+} while (0)
+#endif
#endif