From: Thomas Gleixner Date: Sun, 23 Jan 2011 14:25:56 +0000 (+0100) Subject: cred: Replace deprecated spinlock initialization X-Git-Url: http://drtracing.org/?a=commitdiff_plain;h=10389a15e25fd4784d42de7e0e3fc8c242f2011d;p=deliverable%2Flinux.git cred: Replace deprecated spinlock initialization SPIN_LOCK_UNLOCK is deprecated. Use the lockdep capable variant instead. Signed-off-by: Thomas Gleixner --- diff --git a/kernel/cred.c b/kernel/cred.c index 6a1aa004e376..b5496e81b0f7 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