diff options
author | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2013-08-22 01:21:17 +0200 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2013-08-22 01:21:17 +0200 |
commit | ab9bf4be4dd58f8ae1961180e008b7e3022f08b5 (patch) | |
tree | 1364584f9de0cd4bba03f88ae2fb610e1ebd17ed /fs/sysfs/symlink.c | |
parent | sysfs: fix placement of EXPORT_SYMBOL() (diff) | |
download | linux-ab9bf4be4dd58f8ae1961180e008b7e3022f08b5.tar.xz linux-ab9bf4be4dd58f8ae1961180e008b7e3022f08b5.zip |
sysfs: remove trailing whitespace
This removes all trailing whitespace errors in the sysfs code.
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'fs/sysfs/symlink.c')
-rw-r--r-- | fs/sysfs/symlink.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/sysfs/symlink.c b/fs/sysfs/symlink.c index bb097ad1d860..9fab2e7f7357 100644 --- a/fs/sysfs/symlink.c +++ b/fs/sysfs/symlink.c @@ -297,7 +297,7 @@ static void *sysfs_follow_link(struct dentry *dentry, struct nameidata *nd) int error = -ENOMEM; unsigned long page = get_zeroed_page(GFP_KERNEL); if (page) { - error = sysfs_getlink(dentry, (char *) page); + error = sysfs_getlink(dentry, (char *) page); if (error < 0) free_page((unsigned long)page); } |