aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/gpu/drm/amd/amdgpu/dce_v10_0.c
diff options
context:
space:
mode:
authorAlex Deucher <alexander.deucher@amd.com>2018-02-02 12:24:23 -0500
committerAlex Deucher <alexander.deucher@amd.com>2018-02-19 14:19:19 -0500
commite5e0e8671713633f89451280e694d14206b38ef0 (patch)
tree3e3cbe444f47b4fb2c3a3292bb315c4c61eb0d79 /drivers/gpu/drm/amd/amdgpu/dce_v10_0.c
parentdrm/amd/display: fix incompatible structure layouts (diff)
downloadlinux-dev-e5e0e8671713633f89451280e694d14206b38ef0.tar.xz
linux-dev-e5e0e8671713633f89451280e694d14206b38ef0.zip
drm/amdgpu/dce: fix mask in dce_v*_0_is_in_vblank
Using the wrong mask. Reviewed-by: Michel Dänzer <michel.daenzer@amd.com> Noticed-by: Hans de Ruiter <hans@keasigmadelta.com> Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
Diffstat (limited to 'drivers/gpu/drm/amd/amdgpu/dce_v10_0.c')
-rw-r--r--drivers/gpu/drm/amd/amdgpu/dce_v10_0.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/gpu/drm/amd/amdgpu/dce_v10_0.c b/drivers/gpu/drm/amd/amdgpu/dce_v10_0.c
index c7d1ef00f9a4..8161b6579715 100644
--- a/drivers/gpu/drm/amd/amdgpu/dce_v10_0.c
+++ b/drivers/gpu/drm/amd/amdgpu/dce_v10_0.c
@@ -193,7 +193,7 @@ static void dce_v10_0_audio_endpt_wreg(struct amdgpu_device *adev,
static bool dce_v10_0_is_in_vblank(struct amdgpu_device *adev, int crtc)
{
if (RREG32(mmCRTC_STATUS + crtc_offsets[crtc]) &
- CRTC_V_BLANK_START_END__CRTC_V_BLANK_START_MASK)
+ CRTC_STATUS__CRTC_V_BLANK_MASK)
return true;
else
return false;