From 8b93921a6436875a676d9987974146272993be75 Mon Sep 17 00:00:00 2001 From: David Schleef Date: Thu, 14 Feb 2002 23:36:45 +0000 Subject: [PATCH] Compatibility for vmalloc_32() --- include/linux/vmalloc.h | 4 ++++ 1 file changed, 4 insertions(+) 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 -- 2.26.2