Commit 008531f4 authored by Artem B. Bityutskiy's avatar Artem B. Bityutskiy Committed by Thomas Gleixner

[JFFS2] Fix broken compile when debug level = 2

Signed-off-by: default avatarArtem B. Bityutskiy <dedekind@infradead.org>
Signed-off-by: default avatarThomas Gleixner <tglx@linutronix.de>
parent cfd320fb
...@@ -7,7 +7,7 @@ ...@@ -7,7 +7,7 @@
* *
* For licensing information, see the file 'LICENCE' in this directory. * 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_ #ifndef _JFFS2_DEBUG_H_
...@@ -19,7 +19,7 @@ ...@@ -19,7 +19,7 @@
#define CONFIG_JFFS2_FS_DEBUG 0 #define CONFIG_JFFS2_FS_DEBUG 0
#endif #endif
#if CONFIG_JFFS2_FS_DEBUG == 1 #if CONFIG_JFFS2_FS_DEBUG > 0
/* Enable "paranoia" checks and dumps */ /* Enable "paranoia" checks and dumps */
#define JFFS2_DBG_PARANOIA_CHECKS #define JFFS2_DBG_PARANOIA_CHECKS
#define JFFS2_DBG_DUMPS #define JFFS2_DBG_DUMPS
...@@ -37,7 +37,7 @@ ...@@ -37,7 +37,7 @@
#define JFFS2_DBG_FSBUILD_MESSAGES #define JFFS2_DBG_FSBUILD_MESSAGES
#endif #endif
#if CONFIG_JFFS2_FS_DEBUG == 2 #if CONFIG_JFFS2_FS_DEBUG > 1
#define JFFS2_DBG_FRAGTREE2_MESSAGES #define JFFS2_DBG_FRAGTREE2_MESSAGES
#define JFFS2_DBG_MEMALLOC_MESSAGES #define JFFS2_DBG_MEMALLOC_MESSAGES
#endif #endif
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment