Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1751875AbbEBIgI (ORCPT ); Sat, 2 May 2015 04:36:08 -0400 Received: from 78-80-28-91.tmcz.cz ([78.80.28.91]:60526 "EHLO leontynka.twibright.com" rhost-flags-OK-FAIL-OK-OK) by vger.kernel.org with ESMTP id S1751002AbbEBIgE (ORCPT ); Sat, 2 May 2015 04:36:04 -0400 X-Greylist: delayed 1501 seconds by postgrey-1.27 at vger.kernel.org; Sat, 02 May 2015 04:36:04 EDT Date: Sat, 2 May 2015 10:10:57 +0200 (CEST) From: Mikulas Patocka X-X-Sender: mikulas@leontynka To: Linus Torvalds cc: linux-kernel@vger.kernel.org, Firo Yang Subject: [PATCH] hpfs: Remove unessary cast In-Reply-To: <1429781325-6177-1-git-send-email-firogm@gmail.com> Message-ID: References: <1429781325-6177-1-git-send-email-firogm@gmail.com> User-Agent: Alpine 2.00 (DEB 1167 2008-08-23) MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 983 Lines: 28 Avoid a pointless kmem_cache_alloc() return value cast in fs/hpfs/super.c::hpfs_alloc_inode() Signed-off-by: Firo Yang Acked-by: Mikulas Patocka --- fs/hpfs/super.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) > diff --git a/fs/hpfs/super.c b/fs/hpfs/super.c index 7cd00d3..ccace08 100644 --- a/fs/hpfs/super.c +++ b/fs/hpfs/super.c @@ -201,7 +201,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; -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/