Browse Source

MIPS: Replace deprecated spinlock initialization

SPIN_LOCK_UNLOCK is deprecated. Use the lockdep capable variant instead.

Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Cc: linux-mips@linux-mips.org
Patchwork: https://patchwork.linux-mips.org/patch/2025/
Signed-off-by: Ralf Baechle <ralf@duck.linux-mips.net>
Thomas Gleixner 14 years ago
parent
commit
52bd080d5c
1 changed files with 2 additions and 2 deletions
  1. 2 2
      arch/mips/kernel/vpe.c

+ 2 - 2
arch/mips/kernel/vpe.c

@@ -148,9 +148,9 @@ struct {
 	spinlock_t tc_list_lock;
 	spinlock_t tc_list_lock;
 	struct list_head tc_list;	/* Thread contexts */
 	struct list_head tc_list;	/* Thread contexts */
 } vpecontrol = {
 } vpecontrol = {
-	.vpe_list_lock	= SPIN_LOCK_UNLOCKED,
+	.vpe_list_lock	= __SPIN_LOCK_UNLOCKED(vpe_list_lock),
 	.vpe_list	= LIST_HEAD_INIT(vpecontrol.vpe_list),
 	.vpe_list	= LIST_HEAD_INIT(vpecontrol.vpe_list),
-	.tc_list_lock	= SPIN_LOCK_UNLOCKED,
+	.tc_list_lock	= __SPIN_LOCK_UNLOCKED(tc_list_lock),
 	.tc_list	= LIST_HEAD_INIT(vpecontrol.tc_list)
 	.tc_list	= LIST_HEAD_INIT(vpecontrol.tc_list)
 };
 };