diff mbox

Fs: Ext2: xip.h: fixed coding style issues

Message ID 1411429600-4148-1-git-send-email-tommykurby91@gmail.com
State Not Applicable, archived
Headers show

Commit Message

Tommy Kurby Sept. 22, 2014, 11:46 p.m. UTC
Fixed coding style issues.

Signed-off-by: Tommy Kurby <tommykurby91@gmail.com>
---
 fs/ext2/xip.h | 7 ++++---
 1 file changed, 4 insertions(+), 3 deletions(-)

Comments

Jan Kara Sept. 23, 2014, 3:18 p.m. UTC | #1
On Tue 23-09-14 01:46:40, Tommy Kurby wrote:
> Fixed coding style issues.
> 
> Signed-off-by: Tommy Kurby <tommykurby91@gmail.com>
  Hum, I think Matthew Wilcox's patches change this area as well and they
actually also do something useful. So I prefer not to merge this trivial
cleanup to not make Matthew's life unnecesarily harder.

								Honza
> ---
>  fs/ext2/xip.h | 7 ++++---
>  1 file changed, 4 insertions(+), 3 deletions(-)
> 
> diff --git a/fs/ext2/xip.h b/fs/ext2/xip.h
> index 18b34d2..57b479b 100644
> --- a/fs/ext2/xip.h
> +++ b/fs/ext2/xip.h
> @@ -6,12 +6,13 @@
>   */
>  
>  #ifdef CONFIG_EXT2_FS_XIP
> -extern void ext2_xip_verify_sb (struct super_block *);
> -extern int ext2_clear_xip_target (struct inode *, sector_t);
> +extern void ext2_xip_verify_sb(struct super_block *);
> +extern int ext2_clear_xip_target(struct inode *, sector_t);
>  
> -static inline int ext2_use_xip (struct super_block *sb)
> +static inline int ext2_use_xip(struct super_block *sb)
>  {
>  	struct ext2_sb_info *sbi = EXT2_SB(sb);
> +
>  	return (sbi->s_mount_opt & EXT2_MOUNT_XIP);
>  }
>  int ext2_get_xip_mem(struct address_space *, pgoff_t, int,
> -- 
> 2.1.0
>
diff mbox

Patch

diff --git a/fs/ext2/xip.h b/fs/ext2/xip.h
index 18b34d2..57b479b 100644
--- a/fs/ext2/xip.h
+++ b/fs/ext2/xip.h
@@ -6,12 +6,13 @@ 
  */
 
 #ifdef CONFIG_EXT2_FS_XIP
-extern void ext2_xip_verify_sb (struct super_block *);
-extern int ext2_clear_xip_target (struct inode *, sector_t);
+extern void ext2_xip_verify_sb(struct super_block *);
+extern int ext2_clear_xip_target(struct inode *, sector_t);
 
-static inline int ext2_use_xip (struct super_block *sb)
+static inline int ext2_use_xip(struct super_block *sb)
 {
 	struct ext2_sb_info *sbi = EXT2_SB(sb);
+
 	return (sbi->s_mount_opt & EXT2_MOUNT_XIP);
 }
 int ext2_get_xip_mem(struct address_space *, pgoff_t, int,