Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit d96f1845 authored by Firo Yang's avatar Firo Yang Committed by Linus Torvalds
Browse files

fs/adfs: remove unneeded cast



kmem_cache_alloc() returns void*.

Signed-off-by: default avatarFiro Yang <firogm@gmail.com>
Signed-off-by: default avatarAndrew Morton <akpm@linux-foundation.org>
Signed-off-by: default avatarLinus Torvalds <torvalds@linux-foundation.org>
parent 3e44c471
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -242,7 +242,7 @@ static struct kmem_cache *adfs_inode_cachep;
static struct inode *adfs_alloc_inode(struct super_block *sb)
{
	struct adfs_inode_info *ei;
	ei = (struct adfs_inode_info *)kmem_cache_alloc(adfs_inode_cachep, GFP_KERNEL);
	ei = kmem_cache_alloc(adfs_inode_cachep, GFP_KERNEL);
	if (!ei)
		return NULL;
	return &ei->vfs_inode;