aboutsummaryrefslogtreecommitdiffstats
path: root/fs/sysfs/dir.c
diff options
context:
space:
mode:
Diffstat (limited to 'fs/sysfs/dir.c')
-rw-r--r--fs/sysfs/dir.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/sysfs/dir.c b/fs/sysfs/dir.c
index 27e1102e303e..3e076caa8daf 100644
--- a/fs/sysfs/dir.c
+++ b/fs/sysfs/dir.c
@@ -701,7 +701,7 @@ static struct dentry * sysfs_lookup(struct inode *dir, struct dentry *dentry,
701 /* instantiate and hash dentry */ 701 /* instantiate and hash dentry */
702 ret = d_find_alias(inode); 702 ret = d_find_alias(inode);
703 if (!ret) { 703 if (!ret) {
704 dentry->d_op = &sysfs_dentry_ops; 704 d_set_d_op(dentry, &sysfs_dentry_ops);
705 dentry->d_fsdata = sysfs_get(sd); 705 dentry->d_fsdata = sysfs_get(sd);
706 d_add(dentry, inode); 706 d_add(dentry, inode);
707 } else { 707 } else {