mirror of
https://github.com/Fishwaldo/build.git
synced 2025-03-31 19:21:43 +00:00
Includes experimental video decoder driver. Thanks as always to @miouyouyou for the base patches
32 lines
998 B
Diff
32 lines
998 B
Diff
From 47e8aad9419ff8843a373c3e5aa2c9d261d8cd07 Mon Sep 17 00:00:00 2001
|
|
From: Myy Miouyouyou <myy@miouyouyou.fr>
|
|
Date: Mon, 23 Apr 2018 20:54:13 +0200
|
|
Subject: [PATCH] gpu: arm: midgard: Remove sys_close references
|
|
|
|
sys_close is now replaced by ksys_close in an effort to remove
|
|
in-kernel system calls references.
|
|
|
|
See 2ca2a09d6215fd9621aa3e2db7cc9428a61f2911 and
|
|
https://lkml.org/lkml/2018/3/25/93 for more details.
|
|
|
|
Signed-off-by: Myy Miouyouyou <myy@miouyouyou.fr>
|
|
---
|
|
drivers/gpu/arm/midgard/mali_kbase_sync.h | 2 +-
|
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
|
|
|
diff --git a/drivers/gpu/arm/midgard/mali_kbase_sync.h b/drivers/gpu/arm/midgard/mali_kbase_sync.h
|
|
index de72147d..33b58059 100644
|
|
--- a/drivers/gpu/arm/midgard/mali_kbase_sync.h
|
|
+++ b/drivers/gpu/arm/midgard/mali_kbase_sync.h
|
|
@@ -156,7 +156,7 @@ void kbase_sync_fence_out_remove(struct kbase_jd_atom *katom);
|
|
*/
|
|
static inline void kbase_sync_fence_close_fd(int fd)
|
|
{
|
|
- sys_close(fd);
|
|
+ ksys_close(fd);
|
|
}
|
|
|
|
/**
|
|
--
|
|
2.14.1
|
|
|