aboutsummaryrefslogtreecommitdiffstats
path: root/fs/sysfs
diff options
context:
space:
mode:
authorJiri Slaby <jirislaby@gmail.com>2007-11-21 17:55:19 -0500
committerGreg Kroah-Hartman <gregkh@suse.de>2008-01-24 23:40:08 -0500
commitd7b37889650bb316f5c4ad4b0569ba897120d70d (patch)
tree33a0b024eca4d1b3130b079b10942ee7af364d33 /fs/sysfs
parent2f90a851800e88436873c8d27238cf219b9ef48e (diff)
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>
Diffstat (limited to 'fs/sysfs')
-rw-r--r--fs/sysfs/file.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/sysfs/file.c b/fs/sysfs/file.c
index 4045bdcc4b33..09a0611b3364 100644
--- a/fs/sysfs/file.c
+++ b/fs/sysfs/file.c
@@ -66,7 +66,7 @@ static struct sysfs_ops subsys_sysfs_ops = {
66 * sysfs_dirent->s_attr.open points to sysfs_open_dirent. s_attr.open 66 * sysfs_dirent->s_attr.open points to sysfs_open_dirent. s_attr.open
67 * is protected by sysfs_open_dirent_lock. 67 * is protected by sysfs_open_dirent_lock.
68 */ 68 */
69static spinlock_t sysfs_open_dirent_lock = SPIN_LOCK_UNLOCKED; 69static DEFINE_SPINLOCK(sysfs_open_dirent_lock);
70 70
71struct sysfs_open_dirent { 71struct sysfs_open_dirent {
72 atomic_t refcnt; 72 atomic_t refcnt;