summaryrefslogtreecommitdiff
path: root/yportenv_single.h
diff options
context:
space:
mode:
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