Skip to content

Commit

Permalink
fs: debugfs: remove trailing whitespace
Browse files Browse the repository at this point in the history
fixes checkpatch.pl trailing whitespace errors

Signed-off-by: Rahul Bedarkar <[email protected]>
Signed-off-by: Greg Kroah-Hartman <[email protected]>
  • Loading branch information
rahul-bedarkar authored and gregkh committed Jul 9, 2014
1 parent 8278bd3 commit 88e412e
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion fs/debugfs/file.c
Original file line number Diff line number Diff line change
Expand Up @@ -451,7 +451,7 @@ static ssize_t read_file_bool(struct file *file, char __user *user_buf,
{
char buf[3];
u32 *val = file->private_data;

if (*val)
buf[0] = 'Y';
else
Expand Down
6 changes: 3 additions & 3 deletions fs/debugfs/inode.c
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ static struct inode *debugfs_get_inode(struct super_block *sb, umode_t mode, dev
break;
}
}
return inode;
return inode;
}

/* SMP-safe */
Expand Down Expand Up @@ -317,7 +317,7 @@ static struct dentry *__create_file(const char *name, umode_t mode,
goto exit;

/* If the parent is not specified, we create it in the root.
* We need the root dentry to do this, which is in the super
* We need the root dentry to do this, which is in the super
* block. A pointer to that is in the struct vfsmount that we
* have around.
*/
Expand All @@ -330,7 +330,7 @@ static struct dentry *__create_file(const char *name, umode_t mode,
switch (mode & S_IFMT) {
case S_IFDIR:
error = debugfs_mkdir(parent->d_inode, dentry, mode);

break;
case S_IFLNK:
error = debugfs_link(parent->d_inode, dentry, mode,
Expand Down

0 comments on commit 88e412e

Please sign in to comment.