aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/gpu/drm/amd/amdgpu/mxgpu_vi.c
diff options
context:
space:
mode:
authorMonk Liu <[email protected]>2017-01-26 07:31:15 +0000
committerAlex Deucher <[email protected]>2017-03-30 03:53:12 +0000
commit2641e38b0269be73c8d495eba3df1c7f2a3c2224 (patch)
tree67948ba3e943725964f54a3f7c63d9931ae47a71 /drivers/gpu/drm/amd/amdgpu/mxgpu_vi.c
parentdrm/amdgpu:use work instead of delay-work (diff)
downloadkernel-2641e38b0269be73c8d495eba3df1c7f2a3c2224.tar.gz
kernel-2641e38b0269be73c8d495eba3df1c7f2a3c2224.zip
drm/amdgpu:RUNTIME flag should clr later
this flag will get cleared by request gpu access Signed-off-by: Monk Liu <[email protected]> Reviewed-by: Xiangliang Yu <[email protected]> Signed-off-by: Alex Deucher <[email protected]>
Diffstat (limited to 'drivers/gpu/drm/amd/amdgpu/mxgpu_vi.c')
-rw-r--r--drivers/gpu/drm/amd/amdgpu/mxgpu_vi.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/drivers/gpu/drm/amd/amdgpu/mxgpu_vi.c b/drivers/gpu/drm/amd/amdgpu/mxgpu_vi.c
index 5f156d37a9f0..98cbcd9217e2 100644
--- a/drivers/gpu/drm/amd/amdgpu/mxgpu_vi.c
+++ b/drivers/gpu/drm/amd/amdgpu/mxgpu_vi.c
@@ -505,9 +505,7 @@ static void xgpu_vi_mailbox_flr_work(struct work_struct *work)
struct amdgpu_device *adev = container_of(virt, struct amdgpu_device, virt);
/* wait until RCV_MSG become 3 */
- if (!xgpu_vi_poll_msg(adev, IDH_FLR_NOTIFICATION_CMPL))
- adev->virt.caps &= ~AMDGPU_SRIOV_CAPS_RUNTIME;
- else {
+ if (xgpu_vi_poll_msg(adev, IDH_FLR_NOTIFICATION_CMPL)) {
pr_err("failed to recieve FLR_CMPL\n");
return;
}