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; -- 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