aboutsummaryrefslogtreecommitdiff
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-07-20 14:29:32 +0530
commit8111947dd9c0cc5dd63803523681985672643dc5 (patch)
treee4b4e9389bf90b3d25a568aec193e6c5182304a7
parentcde16ebf4e7832d08c51412b97041ea9ce49809f (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 */