summaryrefslogtreecommitdiffstats
path: root/fs/efs
diff options
context:
space:
mode:
authorFiro Yang <firogm@gmail.com>2015-06-25 18:03:32 -0400
committerLinus Torvalds <torvalds@linux-foundation.org>2015-06-25 20:00:42 -0400
commit35a4c902f61fc262aba03d5e8381334683e4d4aa (patch)
treef679b939cebbc1c33d7977ba5074652c05f5ce37 /fs/efs
parent3c816e490ca48af65ccb420e2462ab7344879e0c (diff)
fs/efs: femove unneeded cast
kmem_cache_alloc() returns void*. Signed-off-by: Firo Yang <firogm@gmail.com> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'fs/efs')
-rw-r--r--fs/efs/super.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/efs/super.c b/fs/efs/super.c
index 7fca462ea4e3..c8411a30f7da 100644
--- a/fs/efs/super.c
+++ b/fs/efs/super.c
@@ -67,7 +67,7 @@ static struct kmem_cache * efs_inode_cachep;
67static struct inode *efs_alloc_inode(struct super_block *sb) 67static struct inode *efs_alloc_inode(struct super_block *sb)
68{ 68{
69 struct efs_inode_info *ei; 69 struct efs_inode_info *ei;
70 ei = (struct efs_inode_info *)kmem_cache_alloc(efs_inode_cachep, GFP_KERNEL); 70 ei = kmem_cache_alloc(efs_inode_cachep, GFP_KERNEL);
71 if (!ei) 71 if (!ei)
72 return NULL; 72 return NULL;
73 return &ei->vfs_inode; 73 return &ei->vfs_inode;