From: Ingo Molnar Date: Wed, 13 Dec 2006 08:34:41 +0000 (-0800) Subject: [PATCH] lockdep: clean up VERY_VERBOSE define X-Git-Tag: v2.6.20-rc1~88 X-Git-Url: https://git.kernel.dk/?a=commitdiff_plain;h=33e94e960b57497fe7fd9493080210b6d87e88e6;p=linux-block.git [PATCH] lockdep: clean up VERY_VERBOSE define Cleanup: the VERY_VERBOSE define was unnecessarily dependent on #ifdef VERBOSE - while the VERBOSE switch is 0 or 1 (always defined). Signed-off-by: Ingo Molnar Signed-off-by: Andrew Morton Signed-off-by: Linus Torvalds --- diff --git a/kernel/lockdep.c b/kernel/lockdep.c index 77fa791f6f31..c4ffd3c1dec4 100644 --- a/kernel/lockdep.c +++ b/kernel/lockdep.c @@ -145,9 +145,7 @@ EXPORT_SYMBOL(lockdep_on); */ #define VERBOSE 0 -#ifdef VERBOSE -# define VERY_VERBOSE 0 -#endif +#define VERY_VERBOSE 0 #if VERBOSE # define HARDIRQ_VERBOSE 1