sysfs: remove SPIN_LOCK_UNLOCKED
SPIN_LOCK_UNLOCKED is deprecated, use DEFINE_SPINLOCK instead Signed-off-by: Jiri Slaby <jirislaby@gmail.com> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Cc: Tejun Heo <teheo@suse.de> Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
This commit is contained in:
parent
2f90a85180
commit
d7b3788965
|
@ -66,7 +66,7 @@ static struct sysfs_ops subsys_sysfs_ops = {
|
|||
* sysfs_dirent->s_attr.open points to sysfs_open_dirent. s_attr.open
|
||||
* is protected by sysfs_open_dirent_lock.
|
||||
*/
|
||||
static spinlock_t sysfs_open_dirent_lock = SPIN_LOCK_UNLOCKED;
|
||||
static DEFINE_SPINLOCK(sysfs_open_dirent_lock);
|
||||
|
||||
struct sysfs_open_dirent {
|
||||
atomic_t refcnt;
|
||||
|
|
Loading…
Reference in New Issue