diff options
author | Alex Deucher <alexander.deucher@amd.com> | 2018-02-02 12:31:27 -0500 |
---|---|---|
committer | Alex Deucher <alexander.deucher@amd.com> | 2018-02-19 14:19:19 -0500 |
commit | a3405d0c712df4b9fb34e6b1f6771b18f462bdd3 (patch) | |
tree | d1b6c2ebf562587840be5794f12a97f1fcce73cd /drivers/gpu/drm/amd/amdgpu/dce_virtual.c | |
parent | e5e0e8671713633f89451280e694d14206b38ef0 (diff) |
drm/amdgpu: remove unused display_vblank_wait interface
No longer used since we changed the MC programming sequence.
Reviewed-by: Michel Dänzer <michel.daenzer@amd.com>
Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
Diffstat (limited to 'drivers/gpu/drm/amd/amdgpu/dce_virtual.c')
-rw-r--r-- | drivers/gpu/drm/amd/amdgpu/dce_virtual.c | 14 |
1 files changed, 0 insertions, 14 deletions
diff --git a/drivers/gpu/drm/amd/amdgpu/dce_virtual.c b/drivers/gpu/drm/amd/amdgpu/dce_virtual.c index 3d6cb0cc2b1d..8201a0929ca2 100644 --- a/drivers/gpu/drm/amd/amdgpu/dce_virtual.c +++ b/drivers/gpu/drm/amd/amdgpu/dce_virtual.c | |||
@@ -48,19 +48,6 @@ static void dce_virtual_set_crtc_vblank_interrupt_state(struct amdgpu_device *ad | |||
48 | int crtc, | 48 | int crtc, |
49 | enum amdgpu_interrupt_state state); | 49 | enum amdgpu_interrupt_state state); |
50 | 50 | ||
51 | /** | ||
52 | * dce_virtual_vblank_wait - vblank wait asic callback. | ||
53 | * | ||
54 | * @adev: amdgpu_device pointer | ||
55 | * @crtc: crtc to wait for vblank on | ||
56 | * | ||
57 | * Wait for vblank on the requested crtc (evergreen+). | ||
58 | */ | ||
59 | static void dce_virtual_vblank_wait(struct amdgpu_device *adev, int crtc) | ||
60 | { | ||
61 | return; | ||
62 | } | ||
63 | |||
64 | static u32 dce_virtual_vblank_get_counter(struct amdgpu_device *adev, int crtc) | 51 | static u32 dce_virtual_vblank_get_counter(struct amdgpu_device *adev, int crtc) |
65 | { | 52 | { |
66 | return 0; | 53 | return 0; |
@@ -654,7 +641,6 @@ static int dce_virtual_connector_encoder_init(struct amdgpu_device *adev, | |||
654 | static const struct amdgpu_display_funcs dce_virtual_display_funcs = { | 641 | static const struct amdgpu_display_funcs dce_virtual_display_funcs = { |
655 | .bandwidth_update = &dce_virtual_bandwidth_update, | 642 | .bandwidth_update = &dce_virtual_bandwidth_update, |
656 | .vblank_get_counter = &dce_virtual_vblank_get_counter, | 643 | .vblank_get_counter = &dce_virtual_vblank_get_counter, |
657 | .vblank_wait = &dce_virtual_vblank_wait, | ||
658 | .backlight_set_level = NULL, | 644 | .backlight_set_level = NULL, |
659 | .backlight_get_level = NULL, | 645 | .backlight_get_level = NULL, |
660 | .hpd_sense = &dce_virtual_hpd_sense, | 646 | .hpd_sense = &dce_virtual_hpd_sense, |