On Tue, 5 May 2009, Chris Sanford wrote: > It was suggested I also send this to trivial.... > > > This is a trivial patch that removes an unnecessary void pointer cast. > > This is my first time submitting a patch so I am unsure who else to > > send it to. Should this also be sent to the trivial mailling list? > > > > Signed-off-by: Chris Sanford <crsanford@xxxxxxxxx> > > > > --- > > > > --- linux-2.6/sound/oss/msnd.c > > +++ linux-2.6/sound/oss/msnd.c > > @@ -100,7 +100,7 @@ void msnd_fifo_free(msnd_fifo *f) > > int msnd_fifo_alloc(msnd_fifo *f, size_t n) > > { > > msnd_fifo_free(f); > > - f->data = (char *)vmalloc(n); > > + f->data = vmalloc(n); > > f->n = n; > > f->tail = 0; > > f->head = 0; > > -- I have applied the patch to trivial tree, thanks Chris. -- Jiri Kosina SUSE Labs -- 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