Lockdep: fix compile error in drivers/input/serio/serio.c
authorAndrew Morton <akpm@osdl.org>
Thu, 12 Oct 2006 03:45:23 +0000 (23:45 -0400)
committerDmitry Torokhov <dtor@insightbb.com>
Thu, 12 Oct 2006 03:45:23 +0000 (23:45 -0400)
lockdep_set_subclass() was missing in !LOCKDEP case

Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Dmitry Torokhov <dtor@mail.ru>
include/linux/lockdep.h

index 14fec2a..819f08f 100644 (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)