diff options
author | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2013-08-21 16:28:26 -0700 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2013-08-21 16:28:26 -0700 |
commit | 1b18dc2beb31f588db1c75901b0112324c72124f (patch) | |
tree | 45050bf98417716cd934da104891ad6b403f67c1 /fs/sysfs/bin.c | |
parent | ab9bf4be4dd58f8ae1961180e008b7e3022f08b5 (diff) | |
download | op-kernel-dev-1b18dc2beb31f588db1c75901b0112324c72124f.zip op-kernel-dev-1b18dc2beb31f588db1c75901b0112324c72124f.tar.gz |
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 745f57f..26861e5 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; |