diff options
author | Rahul Bedarkar <rahulbedarkar89@gmail.com> | 2014-06-06 23:12:04 +0530 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2014-07-09 16:58:21 -0700 |
commit | 88e412ea5ebc377bbb51aeb685c5a11f364ba841 (patch) | |
tree | 88b210431731362042ebdcc6f5d6a3eda64cf821 /fs/debugfs | |
parent | 8278bd3abd727f894f6e41adc06f1126a23ee1fd (diff) | |
download | op-kernel-dev-88e412ea5ebc377bbb51aeb685c5a11f364ba841.zip op-kernel-dev-88e412ea5ebc377bbb51aeb685c5a11f364ba841.tar.gz |
fs: debugfs: remove trailing whitespace
fixes checkpatch.pl trailing whitespace errors
Signed-off-by: Rahul Bedarkar <rahulbedarkar89@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'fs/debugfs')
-rw-r--r-- | fs/debugfs/file.c | 2 | ||||
-rw-r--r-- | fs/debugfs/inode.c | 6 |
2 files changed, 4 insertions, 4 deletions
diff --git a/fs/debugfs/file.c b/fs/debugfs/file.c index 6314629..76c08c2 100644 --- a/fs/debugfs/file.c +++ b/fs/debugfs/file.c @@ -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 diff --git a/fs/debugfs/inode.c b/fs/debugfs/inode.c index 16a46b6..1e3b99d 100644 --- a/fs/debugfs/inode.c +++ b/fs/debugfs/inode.c @@ -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 */ @@ -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. */ @@ -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, |