From: Michael S. Tsirkin Date: Fri, 29 Sep 2006 08:59:28 +0000 (-0700) Subject: [PATCH] lockdep: don't pull in includes when lockdep disabled X-Git-Tag: v2.6.19-rc1~805 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=db0b0ead60815155c791e8f479ee4777e7946369;p=platform%2Fkernel%2Flinux-3.10.git [PATCH] lockdep: don't pull in includes when lockdep disabled Do not pull in various includes through lockdep.h if lockdep is disabled. Signed-off-by: Michael S. Tsirkin Cc: Ingo Molnar Cc: Arjan van de Ven Signed-off-by: Andrew Morton Signed-off-by: Linus Torvalds --- diff --git a/include/linux/lockdep.h b/include/linux/lockdep.h index c040a8c..1314ca0 100644 --- a/include/linux/lockdep.h +++ b/include/linux/lockdep.h @@ -8,13 +8,13 @@ #ifndef __LINUX_LOCKDEP_H #define __LINUX_LOCKDEP_H +#ifdef CONFIG_LOCKDEP + #include #include #include #include -#ifdef CONFIG_LOCKDEP - /* * Lock-class usage-state bits: */