From: Alex Deucher Date: Fri, 2 Feb 2018 17:24:23 +0000 (-0500) Subject: drm/amdgpu/dce: fix mask in dce_v*_0_is_in_vblank X-Git-Url: http://git.cdn.openwrt.org/?a=commitdiff_plain;h=e5e0e8671713633f89451280e694d14206b38ef0;p=openwrt%2Fstaging%2Fblogic.git drm/amdgpu/dce: fix mask in dce_v*_0_is_in_vblank Using the wrong mask. Reviewed-by: Michel Dänzer Noticed-by: Hans de Ruiter Signed-off-by: Alex Deucher --- 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; diff --git a/drivers/gpu/drm/amd/amdgpu/dce_v11_0.c b/drivers/gpu/drm/amd/amdgpu/dce_v11_0.c index 99bc1f36c96b..00b3df281207 100644 --- a/drivers/gpu/drm/amd/amdgpu/dce_v11_0.c +++ b/drivers/gpu/drm/amd/amdgpu/dce_v11_0.c @@ -210,7 +210,7 @@ static void dce_v11_0_audio_endpt_wreg(struct amdgpu_device *adev, static bool dce_v11_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; diff --git a/drivers/gpu/drm/amd/amdgpu/dce_v8_0.c b/drivers/gpu/drm/amd/amdgpu/dce_v8_0.c index 823a8c331da5..6fc3e05aadbc 100644 --- a/drivers/gpu/drm/amd/amdgpu/dce_v8_0.c +++ b/drivers/gpu/drm/amd/amdgpu/dce_v8_0.c @@ -143,7 +143,7 @@ static void dce_v8_0_audio_endpt_wreg(struct amdgpu_device *adev, static bool dce_v8_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;