Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752468AbbF1N1n (ORCPT ); Sun, 28 Jun 2015 09:27:43 -0400 Received: from 78-80-28-91.tmcz.cz ([78.80.28.91]:45481 "EHLO leontynka.twibright.com" rhost-flags-OK-FAIL-OK-OK) by vger.kernel.org with ESMTP id S1752082AbbF1N1K (ORCPT ); Sun, 28 Jun 2015 09:27:10 -0400 Date: Sun, 28 Jun 2015 15:18:51 +0200 (CEST) From: Mikulas Patocka X-X-Sender: mikulas@leontynka To: Linus Torvalds cc: linux-kernel@vger.kernel.org, linux-fsdevel@vger.kernel.org Subject: [PATCH] hpfs: Remove unessary cast Message-ID: User-Agent: Alpine 2.00 (DEB 1167 2008-08-23) MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 1179 Lines: 30 From: Firo Yang Date: Thu, 23 Apr 2015 17:28:45 +0800 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 --- fs/hpfs/super.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) Index: linux-4.1/fs/hpfs/super.c =================================================================== --- linux-4.1.orig/fs/hpfs/super.c 2015-06-22 20:17:54.000000000 +0200 +++ linux-4.1/fs/hpfs/super.c 2015-06-22 21:27:59.000000000 +0200 @@ -238,7 +238,7 @@ static struct kmem_cache * hpfs_inode_ca 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/