diff options
author | Robert P. J. Day <rpjday@mindspring.com> | 2007-02-10 04:46:34 -0500 |
---|---|---|
committer | Linus Torvalds <torvalds@woody.linux-foundation.org> | 2007-02-11 14:18:06 -0500 |
commit | 501b9ebf43f9973c3e246c8fbd17144d81a989ef (patch) | |
tree | 1c72f7b8059e6c74b54844a4362b7adfeaa8153c /kernel/lockdep_proc.c | |
parent | 8cddd7076ab440906dcf2831e37a147484af80fc (diff) |
[PATCH] Fix apparent typo CONFIG_LOCKDEP_DEBUG
Replace the apparent typo CONFIG_LOCKDEP_DEBUG with the correct
CONFIG_DEBUG_LOCKDEP.
Signed-off-by: Robert P. J. Day <rpjday@mindspring.com>
Cc: Ingo Molnar <mingo@elte.hu>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'kernel/lockdep_proc.c')
-rw-r--r-- | kernel/lockdep_proc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/kernel/lockdep_proc.c b/kernel/lockdep_proc.c index 57a547a2da3f..88fc611b3ae9 100644 --- a/kernel/lockdep_proc.c +++ b/kernel/lockdep_proc.c | |||
@@ -244,7 +244,7 @@ static int lockdep_stats_show(struct seq_file *m, void *v) | |||
244 | 244 | ||
245 | sum_forward_deps += count_forward_deps(class); | 245 | sum_forward_deps += count_forward_deps(class); |
246 | } | 246 | } |
247 | #ifdef CONFIG_LOCKDEP_DEBUG | 247 | #ifdef CONFIG_DEBUG_LOCKDEP |
248 | DEBUG_LOCKS_WARN_ON(debug_atomic_read(&nr_unused_locks) != nr_unused); | 248 | DEBUG_LOCKS_WARN_ON(debug_atomic_read(&nr_unused_locks) != nr_unused); |
249 | #endif | 249 | #endif |
250 | seq_printf(m, " lock-classes: %11lu [max: %lu]\n", | 250 | seq_printf(m, " lock-classes: %11lu [max: %lu]\n", |