configfs: Clear up a few extra spaces where there should be TABs.

Signed-off-by: Joel Becker <joel.becker@oracle.com>
Signed-off-by: Mark Fasheh <mark.fasheh@oracle.com>

authored by Joel Becker and committed by Mark Fasheh e7515d06 22dd0e88

+4 -4
+3 -3
fs/configfs/dir.c
··· 211 211 struct configfs_dirent * sd; 212 212 213 213 sd = d->d_fsdata; 214 - list_del_init(&sd->s_sibling); 214 + list_del_init(&sd->s_sibling); 215 215 configfs_put(sd); 216 216 if (d->d_inode) 217 217 simple_rmdir(parent->d_inode,d); ··· 330 330 331 331 ret = configfs_detach_prep(sd->s_dentry); 332 332 if (!ret) 333 - continue; 333 + continue; 334 334 } else 335 335 ret = -ENOTEMPTY; 336 336 ··· 931 931 932 932 new_dentry = lookup_one_len(new_name, parent, strlen(new_name)); 933 933 if (!IS_ERR(new_dentry)) { 934 - if (!new_dentry->d_inode) { 934 + if (!new_dentry->d_inode) { 935 935 error = config_item_set_name(item, "%s", new_name); 936 936 if (!error) { 937 937 d_add(new_dentry, NULL);
+1 -1
fs/configfs/symlink.c
··· 66 66 } 67 67 68 68 static int create_link(struct config_item *parent_item, 69 - struct config_item *item, 69 + struct config_item *item, 70 70 struct dentry *dentry) 71 71 { 72 72 struct configfs_dirent *target_sd = item->ci_dentry->d_fsdata;