diff options
author | Fabian Frederick <fabf@skynet.be> | 2014-08-08 17:23:01 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2014-08-08 18:57:25 -0400 |
commit | b6d53b1b113492632bdc37ee9ab1dda8b9a4bf34 (patch) | |
tree | db5a765ed203f54e5e57a9b781f4733a95a5a9fd /fs/romfs/super.c | |
parent | ca9e5368a7d993558a39c327fa3991ec242ea4c3 (diff) |
fs/romfs/super.c: add blank line after declarations
Fix checkpatch warning:
WARNING: Missing a blank line after declarations
Signed-off-by: Fabian Frederick <fabf@skynet.be>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'fs/romfs/super.c')
-rw-r--r-- | fs/romfs/super.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/fs/romfs/super.c b/fs/romfs/super.c index 6e73879e0da1..e98dd88197d5 100644 --- a/fs/romfs/super.c +++ b/fs/romfs/super.c | |||
@@ -392,6 +392,7 @@ error: | |||
392 | static struct inode *romfs_alloc_inode(struct super_block *sb) | 392 | static struct inode *romfs_alloc_inode(struct super_block *sb) |
393 | { | 393 | { |
394 | struct romfs_inode_info *inode; | 394 | struct romfs_inode_info *inode; |
395 | |||
395 | inode = kmem_cache_alloc(romfs_inode_cachep, GFP_KERNEL); | 396 | inode = kmem_cache_alloc(romfs_inode_cachep, GFP_KERNEL); |
396 | return inode ? &inode->vfs_inode : NULL; | 397 | return inode ? &inode->vfs_inode : NULL; |
397 | } | 398 | } |
@@ -402,6 +403,7 @@ static struct inode *romfs_alloc_inode(struct super_block *sb) | |||
402 | static void romfs_i_callback(struct rcu_head *head) | 403 | static void romfs_i_callback(struct rcu_head *head) |
403 | { | 404 | { |
404 | struct inode *inode = container_of(head, struct inode, i_rcu); | 405 | struct inode *inode = container_of(head, struct inode, i_rcu); |
406 | |||
405 | kmem_cache_free(romfs_inode_cachep, ROMFS_I(inode)); | 407 | kmem_cache_free(romfs_inode_cachep, ROMFS_I(inode)); |
406 | } | 408 | } |
407 | 409 | ||