Commit 9a2ffeb5 authored by Alex Deucher's avatar Alex Deucher

drm/amdgpu: drop drmP.h from vcn_v2_0.c

And fix the fallout.
Acked-by: default avatarSam Ravnborg <sam@ravnborg.org>
Signed-off-by: default avatarAlex Deucher <alexander.deucher@amd.com>
parent 75589f49
...@@ -22,7 +22,7 @@ ...@@ -22,7 +22,7 @@
*/ */
#include <linux/firmware.h> #include <linux/firmware.h>
#include <drm/drmP.h>
#include "amdgpu.h" #include "amdgpu.h"
#include "amdgpu_vcn.h" #include "amdgpu_vcn.h"
#include "soc15.h" #include "soc15.h"
...@@ -2112,7 +2112,7 @@ static int vcn_v2_0_dec_ring_test_ring(struct amdgpu_ring *ring) ...@@ -2112,7 +2112,7 @@ static int vcn_v2_0_dec_ring_test_ring(struct amdgpu_ring *ring)
tmp = RREG32(adev->vcn.inst[ring->me].external.scratch9); tmp = RREG32(adev->vcn.inst[ring->me].external.scratch9);
if (tmp == 0xDEADBEEF) if (tmp == 0xDEADBEEF)
break; break;
DRM_UDELAY(1); udelay(1);
} }
if (i >= adev->usec_timeout) if (i >= adev->usec_timeout)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment