drm/vc4: Convert to CRTC VBLANK callbacks
VBLANK callbacks in struct drm_driver are deprecated in favor of their equivalents in struct drm_crtc_funcs. Convert vc4 over. Signed-off-by: Thomas Zimmermann <tzimmermann@suse.de> Acked-by: Eric Anholt <eric@anholt.net> Link: https://patchwork.freedesktop.org/patch/msgid/20200123135943.24140-19-tzimmermann@suse.de
This commit is contained in:
@@ -1031,6 +1031,7 @@ static const struct drm_crtc_funcs vc4_crtc_funcs = {
|
|||||||
.gamma_set = drm_atomic_helper_legacy_gamma_set,
|
.gamma_set = drm_atomic_helper_legacy_gamma_set,
|
||||||
.enable_vblank = vc4_enable_vblank,
|
.enable_vblank = vc4_enable_vblank,
|
||||||
.disable_vblank = vc4_disable_vblank,
|
.disable_vblank = vc4_disable_vblank,
|
||||||
|
.get_vblank_timestamp = drm_crtc_vblank_helper_get_vblank_timestamp,
|
||||||
};
|
};
|
||||||
|
|
||||||
static const struct drm_crtc_helper_funcs vc4_crtc_helper_funcs = {
|
static const struct drm_crtc_helper_funcs vc4_crtc_helper_funcs = {
|
||||||
|
@@ -190,8 +190,6 @@ static struct drm_driver vc4_drm_driver = {
|
|||||||
.irq_postinstall = vc4_irq_postinstall,
|
.irq_postinstall = vc4_irq_postinstall,
|
||||||
.irq_uninstall = vc4_irq_uninstall,
|
.irq_uninstall = vc4_irq_uninstall,
|
||||||
|
|
||||||
.get_vblank_timestamp = drm_calc_vbltimestamp_from_scanoutpos,
|
|
||||||
|
|
||||||
#if defined(CONFIG_DEBUG_FS)
|
#if defined(CONFIG_DEBUG_FS)
|
||||||
.debugfs_init = vc4_debugfs_init,
|
.debugfs_init = vc4_debugfs_init,
|
||||||
#endif
|
#endif
|
||||||
|
Reference in New Issue
Block a user