diff options
author | Peter Zijlstra | 2013-10-31 18:15:36 +0100 |
---|---|---|
committer | Ingo Molnar | 2013-11-06 07:55:21 +0100 |
commit | 60fc28746a7b61775ae28950ddf7a4ac15955639 (patch) | |
tree | 427ff89f3beaeca421ca25bbfd7c882c0b0c736b /kernel/locking/Makefile | |
parent | 8eddac3f103736163f49255bcb109edadea167f6 (diff) |
locking: Move the spinlock code to kernel/locking/
Suggested-by: Ingo Molnar <mingo@kernel.org>
Signed-off-by: Peter Zijlstra <peterz@infradead.org>
Link: http://lkml.kernel.org/n/tip-b81ol0z3mon45m51o131yc9j@git.kernel.org
Signed-off-by: Ingo Molnar <mingo@kernel.org>
Diffstat (limited to 'kernel/locking/Makefile')
-rw-r--r-- | kernel/locking/Makefile | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/kernel/locking/Makefile b/kernel/locking/Makefile index c103599fc1ba..674d2152d10f 100644 --- a/kernel/locking/Makefile +++ b/kernel/locking/Makefile @@ -13,3 +13,7 @@ obj-$(CONFIG_LOCKDEP) += lockdep.o ifeq ($(CONFIG_PROC_FS),y) obj-$(CONFIG_LOCKDEP) += lockdep_proc.o endif +obj-$(CONFIG_SMP) += spinlock.o +obj-$(CONFIG_PROVE_LOCKING) += spinlock.o +obj-$(CONFIG_DEBUG_SPINLOCK) += spinlock.o +obj-$(CONFIG_DEBUG_SPINLOCK) += spinlock_debug.o |