diff options
author | Greg Kroah-Hartman | 2013-08-22 01:28:26 +0200 |
---|---|---|
committer | Greg Kroah-Hartman | 2013-08-22 01:28:26 +0200 |
commit | 1b18dc2beb31f588db1c75901b0112324c72124f (patch) | |
tree | 45050bf98417716cd934da104891ad6b403f67c1 /fs/sysfs/bin.c | |
parent | sysfs: remove trailing whitespace (diff) | |
download | kernel-qcow2-linux-1b18dc2beb31f588db1c75901b0112324c72124f.tar.gz kernel-qcow2-linux-1b18dc2beb31f588db1c75901b0112324c72124f.tar.xz kernel-qcow2-linux-1b18dc2beb31f588db1c75901b0112324c72124f.zip |
sysfs: fix up space coding style issues
This fixes up all of the space-related coding style issues for the sysfs
code.
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'fs/sysfs/bin.c')
-rw-r--r-- | fs/sysfs/bin.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/fs/sysfs/bin.c b/fs/sysfs/bin.c index 745f57f7d089..26861e5a9fc4 100644 --- a/fs/sysfs/bin.c +++ b/fs/sysfs/bin.c @@ -391,7 +391,7 @@ out_unlock: return rc; } -static int open(struct inode * inode, struct file * file) +static int open(struct inode *inode, struct file *file) { struct sysfs_dirent *attr_sd = file->f_path.dentry->d_fsdata; struct bin_attribute *attr = attr_sd->s_bin_attr.bin_attr; @@ -435,7 +435,7 @@ static int open(struct inode * inode, struct file * file) return error; } -static int release(struct inode * inode, struct file * file) +static int release(struct inode *inode, struct file *file) { struct bin_buffer *bb = file->private_data; |