aboutsummaryrefslogtreecommitdiffstats
path: root/common/recipes-kernel/linux/files/0664-drm-amdgpu-remove-now-unused-fence-functions.patch
diff options
context:
space:
mode:
Diffstat (limited to 'common/recipes-kernel/linux/files/0664-drm-amdgpu-remove-now-unused-fence-functions.patch')
-rw-r--r--common/recipes-kernel/linux/files/0664-drm-amdgpu-remove-now-unused-fence-functions.patch68
1 files changed, 0 insertions, 68 deletions
diff --git a/common/recipes-kernel/linux/files/0664-drm-amdgpu-remove-now-unused-fence-functions.patch b/common/recipes-kernel/linux/files/0664-drm-amdgpu-remove-now-unused-fence-functions.patch
deleted file mode 100644
index fa708dd3..00000000
--- a/common/recipes-kernel/linux/files/0664-drm-amdgpu-remove-now-unused-fence-functions.patch
+++ /dev/null
@@ -1,68 +0,0 @@
-From a67bcd34f6257d5519971a84705e9101ed1160e8 Mon Sep 17 00:00:00 2001
-From: =?UTF-8?q?Christian=20K=C3=B6nig?= <christian.koenig@amd.com>
-Date: Mon, 26 Oct 2015 13:22:33 +0100
-Subject: [PATCH 0664/1565] drm/amdgpu: remove now unused fence functions
-MIME-Version: 1.0
-Content-Type: text/plain; charset=UTF-8
-Content-Transfer-Encoding: 8bit
-
-Signed-off-by: Christian König <christian.koenig@amd.com>
-Reviewed-by: Chunming Zhou <david1.zhou@amd.com>
-Reviewed-by: Alex Deucher <alexander.deucher@amd.com>
----
- drivers/gpu/drm/amd/amdgpu/amdgpu.h | 39 -------------------------------------
- 1 file changed, 39 deletions(-)
-
-diff --git a/drivers/gpu/drm/amd/amdgpu/amdgpu.h b/drivers/gpu/drm/amd/amdgpu/amdgpu.h
-index 510cade..e615fff 100644
---- a/drivers/gpu/drm/amd/amdgpu/amdgpu.h
-+++ b/drivers/gpu/drm/amd/amdgpu/amdgpu.h
-@@ -452,45 +452,6 @@ bool amdgpu_fence_need_sync(struct amdgpu_fence *fence,
- void amdgpu_fence_note_sync(struct amdgpu_fence *fence,
- struct amdgpu_ring *ring);
-
--static inline struct amdgpu_fence *amdgpu_fence_later(struct amdgpu_fence *a,
-- struct amdgpu_fence *b)
--{
-- if (!a) {
-- return b;
-- }
--
-- if (!b) {
-- return a;
-- }
--
-- BUG_ON(a->ring != b->ring);
--
-- if (a->seq > b->seq) {
-- return a;
-- } else {
-- return b;
-- }
--}
--
--static inline bool amdgpu_fence_is_earlier(struct amdgpu_fence *a,
-- struct amdgpu_fence *b)
--{
-- if (!a) {
-- return false;
-- }
--
-- if (!b) {
-- return true;
-- }
--
-- BUG_ON(a->ring != b->ring);
--
-- return a->seq < b->seq;
--}
--
--int amdgpu_user_fence_emit(struct amdgpu_ring *ring, struct amdgpu_user_fence *user,
-- void *owner, struct amdgpu_fence **fence);
--
- /*
- * TTM.
- */
---
-1.9.1
-