aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/gpu/drm/tegra/dc.c
diff options
context:
space:
mode:
Diffstat (limited to 'drivers/gpu/drm/tegra/dc.c')
-rw-r--r--drivers/gpu/drm/tegra/dc.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/drivers/gpu/drm/tegra/dc.c b/drivers/gpu/drm/tegra/dc.c
index 3aaa84ae2681..bc3e85186b88 100644
--- a/drivers/gpu/drm/tegra/dc.c
+++ b/drivers/gpu/drm/tegra/dc.c
@@ -472,13 +472,15 @@ static const struct drm_plane_funcs tegra_primary_plane_funcs = {
472}; 472};
473 473
474static int tegra_plane_prepare_fb(struct drm_plane *plane, 474static int tegra_plane_prepare_fb(struct drm_plane *plane,
475 struct drm_framebuffer *fb) 475 struct drm_framebuffer *fb,
476 const struct drm_plane_state *new_state)
476{ 477{
477 return 0; 478 return 0;
478} 479}
479 480
480static void tegra_plane_cleanup_fb(struct drm_plane *plane, 481static void tegra_plane_cleanup_fb(struct drm_plane *plane,
481 struct drm_framebuffer *fb) 482 struct drm_framebuffer *fb,
483 const struct drm_plane_state *old_fb)
482{ 484{
483} 485}
484 486