From: Frank Mori Hess Date: Mon, 16 May 2005 22:19:11 +0000 (+0000) Subject: revert to revision 1.8, as the issues with remap_page_range have already X-Git-Tag: branch-0_7-end~61 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=8de3bae209e082e274797c4338421dd7bb8fe299;p=comedi.git revert to revision 1.8, as the issues with remap_page_range have already been fixed by migrating to remap_pfn_range --- diff --git a/include/linux/mm.h b/include/linux/mm.h index 1e5bd1db..1bde4dbf 100644 --- a/include/linux/mm.h +++ b/include/linux/mm.h @@ -24,10 +24,8 @@ #if LINUX_VERSION_CODE < KERNEL_VERSION(2,5,3) && !defined(tlb_vma) #define REMAP_PAGE_RANGE(a,b,c,d,e) remap_page_range(b,c,d,e) -#elif LINUX_VERSION_CODE < KERNEL_VERSION(2,6,11) && !defined(tlb_vma) -#define REMAP_PAGE_RANGE(a,b,c,d,e) remap_page_range(a,b,c,d,e) #else -#define REMAP_PAGE_RANGE(a,b,c,d,e) remap_pfn_range(a,b,c,d,e) +#define REMAP_PAGE_RANGE(a,b,c,d,e) remap_page_range(a,b,c,d,e) #endif #if LINUX_VERSION_CODE < KERNEL_VERSION(2,6,10)