mm: use generic follow_pte() in follow_phys()
[sfrench/cifs-2.6.git] / sound / oss / msnd.c
index e4282d93a1aaa121aaac6eeac5c9f22cd92083ec..21eb6dce46df28bf17d2aa160244ac29db911425 100644 (file)
@@ -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;