Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1756256AbbDWJ2z (ORCPT ); Thu, 23 Apr 2015 05:28:55 -0400 Received: from mail-pd0-f196.google.com ([209.85.192.196]:32886 "EHLO mail-pd0-f196.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751590AbbDWJ2x (ORCPT ); Thu, 23 Apr 2015 05:28:53 -0400 From: Firo Yang To: mikulas@artax.karlin.mff.cuni.cz Cc: linux-kernel@vger.kernel.org, Firo Yang Subject: [PATCH] hpfs: Remove unessary cast Date: Thu, 23 Apr 2015 17:28:45 +0800 Message-Id: <1429781325-6177-1-git-send-email-firogm@gmail.com> X-Mailer: git-send-email 2.1.0 Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 946 Lines: 29 Avoid a pointless kmem_cache_alloc() return value cast in fs/hpfs/super.c::hpfs_alloc_inode() Signed-off-by: Firo Yang --- 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; -- 2.1.0 -- 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/