summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTushar Behera <tushar.behera@linaro.org>2012-06-18 11:56:28 +0530
committerTushar Behera <tushar.behera@linaro.org>2012-06-20 11:15:17 +0530
commit2b7a686cf201a00b5ac2288c38fd955977c9603f (patch)
tree5fd4be700a4dcb556a0838a4261823208fce4caf
parent6cfd188615bc233c4b7c8cd49aa7771cf32cb93b (diff)
Fix following compilation error. drivers/gpu/arm/mali/linux/mali_osk_indir_mmap.c: In function ‘_mali_osk_specific_indirect_mmap’: drivers/gpu/arm/mali/linux/mali_osk_indir_mmap.c:40:5: error: implicit declaration of function ‘do_mmap’ Suggested-by: Chunsang Jeong <chunsang.jeong@linaro.org> Signed-off-by: Tushar Behera <tushar.behera@linaro.org>
-rw-r--r--drivers/gpu/arm/mali/linux/mali_osk_indir_mmap.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/drivers/gpu/arm/mali/linux/mali_osk_indir_mmap.c b/drivers/gpu/arm/mali/linux/mali_osk_indir_mmap.c
index 883409ecf51c..ecb44818a6b9 100644
--- a/drivers/gpu/arm/mali/linux/mali_osk_indir_mmap.c
+++ b/drivers/gpu/arm/mali/linux/mali_osk_indir_mmap.c
@@ -7,6 +7,8 @@
* A copy of the licence is included with the program, and can also be obtained from Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
*/
+#include <linux/version.h>
+
#include <linux/slab.h>
#include <linux/pagemap.h>
#include <linux/mm.h>
@@ -25,6 +27,10 @@
* Implementation of per-OS Kernel level specifics
*/
+#if LINUX_VERSION_CODE >= KERNEL_VERSION(3, 5, 0)
+#define do_mmap do_mmap_pgoff
+#endif
+
_mali_osk_errcode_t _mali_osk_specific_indirect_mmap( _mali_uk_mem_mmap_s *args )
{
/* args->ctx ignored here; args->ukk_private required instead */