On Wed, Apr 8, 2009 at 13:22, Jack Stone <jwjstone@xxxxxxxxxxx> wrote: > Remove uneeded void casts > > Signed-Off-By: Jack Stone <jwjstone@xxxxxxxxxxx> > --- > drivers/usb/host/ehci-dbg.c | 2 +- > drivers/usb/host/ehci-mem.c | 6 ++---- > 2 files changed, 3 insertions(+), 5 deletions(-) > > diff --git a/drivers/usb/host/ehci-mem.c b/drivers/usb/host/ehci-mem.c > index 10d5291..c128491 100644 > --- a/drivers/usb/host/ehci-mem.c > +++ b/drivers/usb/host/ehci-mem.c > @@ -212,8 +211,7 @@ static int ehci_mem_init (struct ehci_hcd *ehci, gfp_t flags) > } > > /* Hardware periodic table */ > - ehci->periodic = (__le32 *) > - dma_alloc_coherent (ehci_to_hcd(ehci)->self.controller, > + ehci->periodic = dma_alloc_coherent (ehci_to_hcd(ehci)->self.controller, Hmm, I would leave this in, because of the big endian/little endian annotation. Else sparse (the static semantic checker) could complain. > ehci->periodic_size * sizeof(__le32), > &ehci->periodic_dma, 0); > if (ehci->periodic == NULL) { Bert -- To unsubscribe from this list: send the line "unsubscribe kernel-janitors" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html