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

Commit e6966da2 authored by Thierry Reding's avatar Thierry Reding Committed by Daniel Vetter
Browse files

drm/sti: Remove dummy ->load_lut() implementation



The ->load_lut() callback is optional, therefore a dummy implementation
is not needed.

Cc: Benjamin Gaignard <benjamin.gaignard@linaro.org>
Signed-off-by: default avatarThierry Reding <treding@nvidia.com>
Signed-off-by: default avatarDaniel Vetter <daniel.vetter@ffwll.ch>
parent 6f6f0929
Loading
Loading
Loading
Loading
+0 −6
Original line number Diff line number Diff line
@@ -184,11 +184,6 @@ static int sti_drm_crtc_mode_set_base(struct drm_crtc *crtc, int x, int y,
	return ret;
}

static void sti_drm_crtc_load_lut(struct drm_crtc *crtc)
{
	/* do nothing */
}

static void sti_drm_crtc_disable(struct drm_crtc *crtc)
{
	struct sti_mixer *mixer = to_sti_mixer(crtc);
@@ -243,7 +238,6 @@ static struct drm_crtc_helper_funcs sti_crtc_helper_funcs = {
	.mode_fixup = sti_drm_crtc_mode_fixup,
	.mode_set = sti_drm_crtc_mode_set,
	.mode_set_base = sti_drm_crtc_mode_set_base,
	.load_lut = sti_drm_crtc_load_lut,
	.disable = sti_drm_crtc_disable,
};