From mboxrd@z Thu Jan 1 00:00:00 1970 From: Jack Stone Date: Thu, 09 Apr 2009 09:54:34 +0000 Subject: Re: [PATCH 12/56] hpfs: Remove void casts Message-Id: <49DDC5DA.8070408@fastmail.fm> List-Id: References: <> <1239189748-11703-1-git-send-email-jwjstone@fastmail.fm> <1239189748-11703-2-git-send-email-jwjstone@fastmail.fm> <1239189748-11703-3-git-send-email-jwjstone@fastmail.fm> <1239189748-11703-4-git-send-email-jwjstone@fastmail.fm> <1239189748-11703-5-git-send-email-jwjstone@fastmail.fm> <1239189748-11703-6-git-send-email-jwjstone@fastmail.fm> <1239189748-11703-7-git-send-email-jwjstone@fastmail.fm> <1239189748-11703-8-git-send-email-jwjstone@fastmail.fm> <1239189748-11703-9-git-send-email-jwjstone@fastmail.fm> <1239189748-11703-10-git-send-email-jwjstone@fastmail.fm> <1239189748-11703-11-git-send-email-jwjstone@fastmail.fm> <1239189748-11703-12-git-send-email-jwjstone@fastmail.fm> <1239189748-11703-13-git-send-email-jwjstone@fastmail.fm> In-Reply-To: <1239189748-11703-13-git-send-email-jwjstone@fastmail.fm> MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit To: linux-kernel@vger.kernel.org Cc: jeff@garzik.org, kernel-janitors@vger.kernel.org, mikulas@artax.karlin.mff.cuni.cz [Added maintainer CC] Jack Stone wrote: > Remove uneeded void casts > > Signed-Off-By: Jack Stone > --- > fs/hpfs/super.c | 2 +- > 1 files changed, 1 insertions(+), 1 deletions(-) > > diff --git a/fs/hpfs/super.c b/fs/hpfs/super.c > index fecf402..ab539dc 100644 > --- a/fs/hpfs/super.c > +++ b/fs/hpfs/super.c > @@ -164,7 +164,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; >