From: Jiri Slaby Date: Wed, 21 Nov 2007 22:55:19 +0000 (-0800) Subject: sysfs: remove SPIN_LOCK_UNLOCKED X-Git-Tag: v3.12-rc1~24134^2~164 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=d7b37889650bb316f5c4ad4b0569ba897120d70d;p=kernel%2Fkernel-generic.git sysfs: remove SPIN_LOCK_UNLOCKED SPIN_LOCK_UNLOCKED is deprecated, use DEFINE_SPINLOCK instead Signed-off-by: Jiri Slaby Signed-off-by: Andrew Morton Cc: Tejun Heo Signed-off-by: Greg Kroah-Hartman --- diff --git a/fs/sysfs/file.c b/fs/sysfs/file.c index 4045bdc..09a0611 100644 --- a/fs/sysfs/file.c +++ b/fs/sysfs/file.c @@ -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;