From: Thomas Gleixner <tglx@linutronix.de>
Date: Sun, 23 Jan 2011 14:25:56 +0000 (+0100)
Subject: cred: Replace deprecated spinlock initialization
X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=10389a15e25fd4784d42de7e0e3fc8c242f2011d;p=linux.git

cred: Replace deprecated spinlock initialization

SPIN_LOCK_UNLOCK is deprecated. Use the lockdep capable variant
instead.

Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
---

diff --git a/kernel/cred.c b/kernel/cred.c
index 6a1aa004e3766..b5496e81b0f73 100644
--- a/kernel/cred.c
+++ b/kernel/cred.c
@@ -35,7 +35,7 @@ static struct kmem_cache *cred_jar;
 static struct thread_group_cred init_tgcred = {
 	.usage	= ATOMIC_INIT(2),
 	.tgid	= 0,
-	.lock	= SPIN_LOCK_UNLOCKED,
+	.lock	= __SPIN_LOCK_UNLOCKED(init_cred.tgcred.lock),
 };
 #endif