Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit fa7743b1 authored by Thomas Zimmermann's avatar Thomas Zimmermann Committed by Inki Dae
Browse files

drm/exynos: Replace drm_framebuffer_{un/reference} with put,get functions



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: default avatarThomas Zimmermann <tdz@users.sourceforge.net>
Signed-off-by: default avatarInki Dae <inki.dae@samsung.com>
parent e94595b0
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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;
	}