diff options
author | Eric Sandeen <sandeen@sandeen.net> | 2014-06-22 01:03:54 -0400 |
---|---|---|
committer | Dave Chinner <david@fromorbit.com> | 2014-06-22 01:03:54 -0400 |
commit | d99831ff393ff2e28d6110b41f24d9fecf986222 (patch) | |
tree | 4e21591c0ed0992ca085b08a2faf7b53fec51586 /fs/xfs/xfs_linux.h | |
parent | a497c3ba1d97fc69c1e78e7b96435ba8c2cb42ee (diff) |
xfs: return is not a function
return is not a function. "return(EIO);" is silly;
"return (EIO);" moreso. return is not a function.
Nuke the pointless parens.
[dchinner: catch a couple of extra cases in xfs_attr_list.c,
xfs_acl.c and xfs_linux.h.]
Signed-off-by: Eric Sandeen <sandeen@redhat.com>
Reviewed-by: Christoph Hellwig <hch@lst.de>
Reviewed-by: Dave Chinner <dchinner@redhat.com>
Signed-off-by: Dave Chinner <david@fromorbit.com>
Diffstat (limited to 'fs/xfs/xfs_linux.h')
-rw-r--r-- | fs/xfs/xfs_linux.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/xfs/xfs_linux.h b/fs/xfs/xfs_linux.h index 825249d2dfc1..f59b966bf903 100644 --- a/fs/xfs/xfs_linux.h +++ b/fs/xfs/xfs_linux.h | |||
@@ -331,7 +331,7 @@ static inline __uint64_t roundup_64(__uint64_t x, __uint32_t y) | |||
331 | { | 331 | { |
332 | x += y - 1; | 332 | x += y - 1; |
333 | do_div(x, y); | 333 | do_div(x, y); |
334 | return(x * y); | 334 | return x * y; |
335 | } | 335 | } |
336 | 336 | ||
337 | static inline __uint64_t howmany_64(__uint64_t x, __uint32_t y) | 337 | static inline __uint64_t howmany_64(__uint64_t x, __uint32_t y) |