drm/exynos: Replace drm_framebuffer_{un/reference} with put,get functions
authorThomas Zimmermann <tdz@users.sourceforge.net>
Mon, 18 Jun 2018 13:17:37 +0000 (15:17 +0200)
committerInki Dae <inki.dae@samsung.com>
Mon, 2 Jul 2018 02:40:44 +0000 (11:40 +0900)
This patch unifies the naming of DRM functions for reference counting
of struct drm_framebuffer. The resulting code is more aligned with the
rest of the Linux kernel interfaces.

Signed-off-by: Thomas Zimmermann <tdz@users.sourceforge.net>
Signed-off-by: Inki Dae <inki.dae@samsung.com>
drivers/gpu/drm/exynos/exynos_drm_plane.c

index 38a2a7f..7098c6d 100644 (file)
@@ -132,7 +132,7 @@ static void exynos_drm_plane_reset(struct drm_plane *plane)
        if (plane->state) {
                exynos_state = to_exynos_plane_state(plane->state);
                if (exynos_state->base.fb)
-                       drm_framebuffer_unreference(exynos_state->base.fb);
+                       drm_framebuffer_put(exynos_state->base.fb);
                kfree(exynos_state);
                plane->state = NULL;
        }