aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEmily.Deng <Emily.Deng@amd.com>2020-10-08 08:53:59 +0800
committerAlex Deucher <alexander.deucher@amd.com>2020-10-09 15:15:48 -0400
commitb0047e53c4a5f92b9c59c5532490bbe5023d0404 (patch)
treecf8c9b2b9e774329ea27aa92cccfb5d2b144ca67
parentdrm/amdgpu: kfd_initialized can be static (diff)
downloadlinux-dev-b0047e53c4a5f92b9c59c5532490bbe5023d0404.tar.xz
linux-dev-b0047e53c4a5f92b9c59c5532490bbe5023d0404.zip
drm/amdgpu: Remove warning for virtual_display
Remove the virtual_display warning in drm_crtc_vblank_off when dev->num_crtcs is null. Reviewed-by: Andrey Grodzovsky <andrey.grodzovsky@amd.com> Signed-off-by: Emily.Deng <Emily.Deng@amd.com> Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
-rw-r--r--drivers/gpu/drm/amd/amdgpu/dce_virtual.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/drivers/gpu/drm/amd/amdgpu/dce_virtual.c b/drivers/gpu/drm/amd/amdgpu/dce_virtual.c
index 469c05fd43d5..b4d4b76538d2 100644
--- a/drivers/gpu/drm/amd/amdgpu/dce_virtual.c
+++ b/drivers/gpu/drm/amd/amdgpu/dce_virtual.c
@@ -174,8 +174,10 @@ static void dce_virtual_crtc_commit(struct drm_crtc *crtc)
static void dce_virtual_crtc_disable(struct drm_crtc *crtc)
{
struct amdgpu_crtc *amdgpu_crtc = to_amdgpu_crtc(crtc);
+ struct drm_device *dev = crtc->dev;
- drm_crtc_vblank_off(crtc);
+ if (dev->num_crtcs)
+ drm_crtc_vblank_off(crtc);
amdgpu_crtc->enabled = false;
amdgpu_crtc->pll_id = ATOM_PPLL_INVALID;