aboutsummaryrefslogtreecommitdiffstats
path: root/meta-amdfalconx86/recipes-kernel/linux/files/0453-drm-amdgpu-No-need-to-stop-hw-init-although-vce-s-st.patch
diff options
context:
space:
mode:
Diffstat (limited to 'meta-amdfalconx86/recipes-kernel/linux/files/0453-drm-amdgpu-No-need-to-stop-hw-init-although-vce-s-st.patch')
-rw-r--r--meta-amdfalconx86/recipes-kernel/linux/files/0453-drm-amdgpu-No-need-to-stop-hw-init-although-vce-s-st.patch36
1 files changed, 0 insertions, 36 deletions
diff --git a/meta-amdfalconx86/recipes-kernel/linux/files/0453-drm-amdgpu-No-need-to-stop-hw-init-although-vce-s-st.patch b/meta-amdfalconx86/recipes-kernel/linux/files/0453-drm-amdgpu-No-need-to-stop-hw-init-although-vce-s-st.patch
deleted file mode 100644
index 20a8b15a..00000000
--- a/meta-amdfalconx86/recipes-kernel/linux/files/0453-drm-amdgpu-No-need-to-stop-hw-init-although-vce-s-st.patch
+++ /dev/null
@@ -1,36 +0,0 @@
-From ebeaf9918b6611e171b54faf18dd180f8abdfbf5 Mon Sep 17 00:00:00 2001
-From: Rex Zhu <Rex.Zhu@amd.com>
-Date: Wed, 16 Mar 2016 14:48:18 +0800
-Subject: [PATCH 0453/1110] drm/amdgpu: No need to stop hw init although vce's
- state was not true.
-MIME-Version: 1.0
-Content-Type: text/plain; charset=UTF-8
-Content-Transfer-Encoding: 8bit
-
-v2: add comment why ignore the error here.
-
-Signed-off-by: Rex Zhu <Rex.Zhu@amd.com>
-Reviewed-by: Alex Deucher <alexander.deucher@amd.com>
-Reviewed-by: Christian König <christian.koenig@amd.com>
-Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
----
- drivers/gpu/drm/amd/amdgpu/vce_v2_0.c | 3 ++-
- 1 file changed, 2 insertions(+), 1 deletion(-)
-
-diff --git a/drivers/gpu/drm/amd/amdgpu/vce_v2_0.c b/drivers/gpu/drm/amd/amdgpu/vce_v2_0.c
-index fda89ec..4440973 100644
---- a/drivers/gpu/drm/amd/amdgpu/vce_v2_0.c
-+++ b/drivers/gpu/drm/amd/amdgpu/vce_v2_0.c
-@@ -240,7 +240,8 @@ static int vce_v2_0_hw_init(void *handle)
-
- r = vce_v2_0_start(adev);
- if (r)
-- return r;
-+/* this error mean vcpu not in running state, so just skip ring test, not stop driver initialize */
-+ return 0;
-
- ring = &adev->vce.ring[0];
- ring->ready = true;
---
-2.7.4
-