From: David Schleef Date: Thu, 14 Feb 2002 23:36:45 +0000 (+0000) Subject: Compatibility for vmalloc_32() X-Git-Tag: r0_7_64~115 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=8b93921a6436875a676d9987974146272993be75;p=comedi.git Compatibility for vmalloc_32() --- diff --git a/include/linux/vmalloc.h b/include/linux/vmalloc.h index def457c7..de4b57ee 100644 --- a/include/linux/vmalloc.h +++ b/include/linux/vmalloc.h @@ -7,6 +7,10 @@ #include +#if LINUX_VERSION_CODE < 0x020300 +#define vmalloc_32(x) vmalloc((x)) +#endif + #if LINUX_VERSION_CODE < 0x020200 #else