1
0
Fork 0

Lockdep: fix compile error in drivers/input/serio/serio.c

lockdep_set_subclass() was missing in !LOCKDEP case

Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Dmitry Torokhov <dtor@mail.ru>
hifive-unleashed-5.1
Andrew Morton 2006-10-11 23:45:23 -04:00 committed by Dmitry Torokhov
parent 88aa0103e4
commit 07646e217f
1 changed files with 2 additions and 0 deletions

View File

@ -268,6 +268,8 @@ static inline int lockdep_internal(void)
do { (void)(key); } while (0)
#define lockdep_set_class_and_subclass(lock, key, sub) \
do { (void)(key); } while (0)
#define lockdep_set_subclass(lock, sub) do { } while (0)
# define INIT_LOCKDEP
# define lockdep_reset() do { debug_locks = 1; } while (0)
# define lockdep_free_key_range(start, size) do { } while (0)