diff options
author | Firo Yang <firogm@gmail.com> | 2015-06-25 15:03:32 -0700 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2015-06-25 17:00:42 -0700 |
commit | 35a4c902f61fc262aba03d5e8381334683e4d4aa (patch) | |
tree | f679b939cebbc1c33d7977ba5074652c05f5ce37 /fs/efs | |
parent | 3c816e490ca48af65ccb420e2462ab7344879e0c (diff) | |
download | op-kernel-dev-35a4c902f61fc262aba03d5e8381334683e4d4aa.zip op-kernel-dev-35a4c902f61fc262aba03d5e8381334683e4d4aa.tar.gz |
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.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/efs/super.c b/fs/efs/super.c index 7fca462..c8411a3 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; |