Staging: comedi: drivers.c: fix PAGE_KERNEL_NOCACHE issue
authorGreg Kroah-Hartman <gregkh@suse.de>
Thu, 9 Jun 2011 19:13:08 +0000 (12:13 -0700)
committerGreg Kroah-Hartman <gregkh@suse.de>
Thu, 9 Jun 2011 19:13:53 +0000 (12:13 -0700)
Not all arches have PAGE_KERNEL_NOCACHE, so use the "normal" PAGE_KERNEL
on those that do not have it.

Reported-by: Stephen Rothwell <sfr@canb.auug.org.au>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
drivers/staging/comedi/drivers.c

index 6d60e91..db1fd63 100644 (file)
@@ -502,7 +502,11 @@ int comedi_buf_alloc(struct comedi_device *dev, struct comedi_subdevice *s,
                }
                if (i == n_pages) {
                        async->prealloc_buf =
+#ifdef PAGE_KERNEL_NOCACHE
                            vmap(pages, n_pages, VM_MAP, PAGE_KERNEL_NOCACHE);
+#else
+                           vmap(pages, n_pages, VM_MAP, PAGE_KERNEL);
+#endif
                }
                vfree(pages);