Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 235454c9 authored by Thomas Gleixner's avatar Thomas Gleixner
Browse files

xtensa: Replace deprecated spinlock initialization



SPIN_LOCK_UNLOCK is deprecated. Use the lockdep capable variant
instead.

Signed-off-by: default avatarThomas Gleixner <tglx@linutronix.de>
Cc: Chris Zankel <chris@zankel.net>
parent 22e65004
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -38,7 +38,7 @@ struct rw_semaphore {
};

#define __RWSEM_INITIALIZER(name) \
	{ RWSEM_UNLOCKED_VALUE, SPIN_LOCK_UNLOCKED, \
	{ RWSEM_UNLOCKED_VALUE, __SPIN_LOCK_UNLOCKED((name).wait_lock),	\
	  LIST_HEAD_INIT((name).wait_list) }

#define DECLARE_RWSEM(name)		\