]> asedeno.scripts.mit.edu Git - linux.git/commitdiff
drm/amd/display: Use non-deprecated vblank handler
authorLeo (Sunpeng) Li <sunpeng.li@amd.com>
Mon, 13 Aug 2018 21:45:05 +0000 (17:45 -0400)
committerAlex Deucher <alexander.deucher@amd.com>
Mon, 27 Aug 2018 20:20:10 +0000 (15:20 -0500)
[Why]
drm_handle_vblank is deprecated. Use drm_crtc_handle_vblank instead.

Signed-off-by: Leo (Sunpeng) Li <sunpeng.li@amd.com>
Reviewed-by: David Francis <David.Francis@amd.com>
Acked-by: Leo Li <sunpeng.li@amd.com>
Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
drivers/gpu/drm/amd/display/amdgpu_dm/amdgpu_dm.c

index c18bad38763595398699b4d4c702d232d5f2e02d..ad11dc9e8c1d455c327cbd95d4c385701b9e888e 100644 (file)
@@ -311,16 +311,14 @@ static void dm_crtc_high_irq(void *interrupt_params)
 {
        struct common_irq_params *irq_params = interrupt_params;
        struct amdgpu_device *adev = irq_params->adev;
-       uint8_t crtc_index = 0;
        struct amdgpu_crtc *acrtc;
 
        acrtc = get_crtc_by_otg_inst(adev, irq_params->irq_src - IRQ_TYPE_VBLANK);
 
-       if (acrtc)
-               crtc_index = acrtc->crtc_id;
-
-       drm_handle_vblank(adev->ddev, crtc_index);
-       amdgpu_dm_crtc_handle_crc_irq(&acrtc->base);
+       if (acrtc) {
+               drm_crtc_handle_vblank(&acrtc->base);
+               amdgpu_dm_crtc_handle_crc_irq(&acrtc->base);
+       }
 }
 
 static int dm_set_clockgating_state(void *handle,