diff options
author | Ingo Molnar <[email protected]> | 2006-07-03 00:24:31 -0700 |
---|---|---|
committer | Linus Torvalds <[email protected]> | 2006-07-03 15:27:01 -0700 |
commit | 36596243daf7e1d795c647de04af95e835b8c5b4 (patch) | |
tree | 8348a9f5e3729cf0df5064753bfdcc1ec159eaa8 | |
parent | 9e7f4d451e99b7592a96ad0efaf8bcc1e7b2f854 (diff) |
[PATCH] lockdep: remove DEBUG_BUG_ON()
cleanup: remove unused DEBUG_BUG_ON() defines.
Signed-off-by: Ingo Molnar <[email protected]>
Signed-off-by: Andrew Morton <[email protected]>
Signed-off-by: Linus Torvalds <[email protected]>
-rw-r--r-- | kernel/mutex-debug.h | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/kernel/mutex-debug.h b/kernel/mutex-debug.h index 8417b52ebd65..bdab13a9ee26 100644 --- a/kernel/mutex-debug.h +++ b/kernel/mutex-debug.h @@ -103,17 +103,9 @@ do { \ } \ } while (0) -# define DEBUG_BUG_ON(c) \ -do { \ - if (unlikely(c)) \ - DEBUG_BUG(); \ -} while (0) - #ifdef CONFIG_SMP # define SMP_DEBUG_LOCKS_WARN_ON(c) DEBUG_LOCKS_WARN_ON(c) -# define SMP_DEBUG_BUG_ON(c) DEBUG_BUG_ON(c) #else # define SMP_DEBUG_LOCKS_WARN_ON(c) do { } while (0) -# define SMP_DEBUG_BUG_ON(c) do { } while (0) #endif |