diff options
author | Jaegeuk Kim | 2015-12-23 14:56:09 -0800 |
---|---|---|
committer | Jaegeuk Kim | 2015-12-30 10:14:14 -0800 |
commit | 06d6f2263913029ccd6199fd10e7dca525d348b1 (patch) | |
tree | 789863e51f4435cfd55ef9e7cafd299b2e258801 /fs/f2fs | |
parent | b4d07a3e1a6e783132be7506aeb171dc5728f077 (diff) |
f2fs: declare static function
The __f2fs_commit_super is static.
Signed-off-by: Jaegeuk Kim <jaegeuk@kernel.org>
Diffstat (limited to 'fs/f2fs')
-rw-r--r-- | fs/f2fs/super.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/f2fs/super.c b/fs/f2fs/super.c index 597b533634e0..75704d9caae2 100644 --- a/fs/f2fs/super.c +++ b/fs/f2fs/super.c @@ -1195,7 +1195,7 @@ next: return 0; } -int __f2fs_commit_super(struct f2fs_sb_info *sbi, int block) +static int __f2fs_commit_super(struct f2fs_sb_info *sbi, int block) { struct f2fs_super_block *super = F2FS_RAW_SUPER(sbi); struct buffer_head *bh; |