From: Firo Yang Date: Thu, 23 Apr 2015 09:28:45 +0000 (+0800) Subject: hpfs: Remove unessary cast X-Git-Url: https://git.stricted.de/?a=commitdiff_plain;h=d7b04097c250e6322ba73d3b03337074afeeb314;p=GitHub%2FLineageOS%2Fandroid_kernel_motorola_exynos9610.git hpfs: Remove unessary cast Avoid a pointless kmem_cache_alloc() return value cast in fs/hpfs/super.c::hpfs_alloc_inode() Signed-off-by: Firo Yang Signed-off-by: Mikulas Patocka Signed-off-by: Linus Torvalds --- diff --git a/fs/hpfs/super.c b/fs/hpfs/super.c index 037e3e597ff4..0642516d36c8 100644 --- a/fs/hpfs/super.c +++ b/fs/hpfs/super.c @@ -228,7 +228,7 @@ static struct kmem_cache * hpfs_inode_cachep; static struct inode *hpfs_alloc_inode(struct super_block *sb) { struct hpfs_inode_info *ei; - ei = (struct hpfs_inode_info *)kmem_cache_alloc(hpfs_inode_cachep, GFP_NOFS); + ei = kmem_cache_alloc(hpfs_inode_cachep, GFP_NOFS); if (!ei) return NULL; ei->vfs_inode.i_version = 1;