From mboxrd@z Thu Jan 1 00:00:00 1970 From: Jack Stone Date: Thu, 09 Apr 2009 09:41:47 +0000 Subject: Re: [PATCH 02/56] alpha: Remove void casts Message-Id: <49DDC2DB.4090504@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> In-Reply-To: <1239189748-11703-3-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, rth@twiddle.net [Added maintainer CC] Jack Stone wrote: > Remove uneeded void casts > > Signed-Off-By: Jack Stone > --- > arch/alpha/boot/bootpz.c | 2 +- > 1 files changed, 1 insertions(+), 1 deletions(-) > > diff --git a/arch/alpha/boot/bootpz.c b/arch/alpha/boot/bootpz.c > index 1036b51..6e7af60 100644 > --- a/arch/alpha/boot/bootpz.c > +++ b/arch/alpha/boot/bootpz.c > @@ -129,7 +129,7 @@ pal_init(void) > pcb_va->flags = 1; > pcb_va->res1 = 0; > pcb_va->res2 = 0; > - pcb_pa = (struct pcb_struct *)find_pa((unsigned long)pcb_va); > + pcb_pa = find_pa((unsigned long)pcb_va); > > /* > * a0 = 2 (OSF) >