diff options
| author | Sasha Levin <sasha.levin@oracle.com> | 2015-08-25 01:19:44 -0400 |
|---|---|---|
| committer | Ingo Molnar <mingo@kernel.org> | 2015-08-25 03:44:22 -0400 |
| commit | 62b989de598c486df65a14dfd9bb4a9953c75568 (patch) | |
| tree | 8d79f75c5a323755b5b7ea46004273d34f73a794 /tools/lib/lockdep/uinclude/linux | |
| parent | 92e25fd9be82a37247e587415ff9a9e773008d56 (diff) | |
tools/liblockdep: Correct macro for WARN
As Peter Zijlstra pointed out, the varargs for WARN() are
optional, so we need to correctly handle the case where they
don't exist.
This would cause a compilation error.
Signed-off-by: Sasha Levin <sasha.levin@oracle.com>
Cc: Linus Torvalds <torvalds@linux-foundation.org>
Cc: Peter Zijlstra <peterz@infradead.org>
Cc: Thomas Gleixner <tglx@linutronix.de>
Link: http://lkml.kernel.org/r/1440479985-6696-2-git-send-email-sasha.levin@oracle.com
Signed-off-by: Ingo Molnar <mingo@kernel.org>
Diffstat (limited to 'tools/lib/lockdep/uinclude/linux')
| -rw-r--r-- | tools/lib/lockdep/uinclude/linux/kernel.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/lib/lockdep/uinclude/linux/kernel.h b/tools/lib/lockdep/uinclude/linux/kernel.h index cd2cc59a5da7..276c7a8b2ed1 100644 --- a/tools/lib/lockdep/uinclude/linux/kernel.h +++ b/tools/lib/lockdep/uinclude/linux/kernel.h | |||
| @@ -23,7 +23,7 @@ | |||
| 23 | #define WARN_ON(x) (x) | 23 | #define WARN_ON(x) (x) |
| 24 | #define WARN_ON_ONCE(x) (x) | 24 | #define WARN_ON_ONCE(x) (x) |
| 25 | #define likely(x) (x) | 25 | #define likely(x) (x) |
| 26 | #define WARN(x, y, z) (x) | 26 | #define WARN(x, y...) (x) |
| 27 | #define uninitialized_var(x) x | 27 | #define uninitialized_var(x) x |
| 28 | #define __init | 28 | #define __init |
| 29 | #define noinline | 29 | #define noinline |
