# HG changeset patch # User charles # Date 1256869898 0 # Node ID 795055444bcb4fa95c6feb0ee272be7b2800625b # Parent 37f81449fcd70fae8892f3a641150c7fc94b5d6c Change default trace mask diff --git a/yportenv.h b/yportenv.h --- a/yportenv.h +++ b/yportenv.h @@ -94,7 +94,7 @@ #define TOUT(p) printk p #define yaffs_trace(mask, fmt, args...) \ - do { if ((mask) & (yaffs_traceMask|YAFFS_TRACE_ERROR)) \ + do { if ((mask) & (yaffs_traceMask| YAFFS_TRACE_ALWAYS)) \ printk(KERN_WARNING "yaffs: " fmt, ## args); \ } while (0)