diff options
author | Artem B. Bityutskiy <dedekind@infradead.org> | 2005-10-24 17:22:36 +0100 |
---|---|---|
committer | Thomas Gleixner <tglx@mtd.linutronix.de> | 2005-11-06 23:17:39 +0100 |
commit | 008531f4c30dce606094be8f78c766218edd6754 (patch) | |
tree | 2c4f199d5595b276ef085527e35f384fab58924f /fs | |
parent | cfd320fbfcf2ff0137d8e26f46ba4b66dae96083 (diff) | |
download | op-kernel-dev-008531f4c30dce606094be8f78c766218edd6754.zip op-kernel-dev-008531f4c30dce606094be8f78c766218edd6754.tar.gz |
[JFFS2] Fix broken compile when debug level = 2
Signed-off-by: Artem B. Bityutskiy <dedekind@infradead.org>
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Diffstat (limited to 'fs')
-rw-r--r-- | fs/jffs2/debug.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/fs/jffs2/debug.h b/fs/jffs2/debug.h index da1417d..b47ba9f1 100644 --- a/fs/jffs2/debug.h +++ b/fs/jffs2/debug.h @@ -7,7 +7,7 @@ * * For licensing information, see the file 'LICENCE' in this directory. * - * $Id: debug.h,v 1.18 2005/09/21 10:26:26 dedekind Exp $ + * $Id: debug.h,v 1.20 2005/10/24 16:22:34 dedekind Exp $ * */ #ifndef _JFFS2_DEBUG_H_ @@ -19,7 +19,7 @@ #define CONFIG_JFFS2_FS_DEBUG 0 #endif -#if CONFIG_JFFS2_FS_DEBUG == 1 +#if CONFIG_JFFS2_FS_DEBUG > 0 /* Enable "paranoia" checks and dumps */ #define JFFS2_DBG_PARANOIA_CHECKS #define JFFS2_DBG_DUMPS @@ -37,7 +37,7 @@ #define JFFS2_DBG_FSBUILD_MESSAGES #endif -#if CONFIG_JFFS2_FS_DEBUG == 2 +#if CONFIG_JFFS2_FS_DEBUG > 1 #define JFFS2_DBG_FRAGTREE2_MESSAGES #define JFFS2_DBG_MEMALLOC_MESSAGES #endif |