summaryrefslogtreecommitdiffstats
path: root/fs/efs
diff options
context:
space:
mode:
authorFiro Yang2015-06-26 00:03:32 +0200
committerLinus Torvalds2015-06-26 02:00:42 +0200
commit35a4c902f61fc262aba03d5e8381334683e4d4aa (patch)
treef679b939cebbc1c33d7977ba5074652c05f5ce37 /fs/efs
parentcheckpatch: emit "NOTE: <types>" message only once after multiple files (diff)
downloadkernel-qcow2-linux-35a4c902f61fc262aba03d5e8381334683e4d4aa.tar.gz
kernel-qcow2-linux-35a4c902f61fc262aba03d5e8381334683e4d4aa.tar.xz
kernel-qcow2-linux-35a4c902f61fc262aba03d5e8381334683e4d4aa.zip
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;
static struct inode *efs_alloc_inode(struct super_block *sb)
{
struct efs_inode_info *ei;
- ei = (struct efs_inode_info *)kmem_cache_alloc(efs_inode_cachep, GFP_KERNEL);
+ ei = kmem_cache_alloc(efs_inode_cachep, GFP_KERNEL);
if (!ei)
return NULL;
return &ei->vfs_inode;