From: Laurent Pinchart Date: Sun, 19 Aug 2018 11:12:27 +0000 (+0300) Subject: drm/omap: encoder-tfp410: Don't fix timings in .set_timings() handler X-Git-Tag: Ubuntu-5.4-5.4.0-11.14~4243^2~29^2~19 X-Git-Url: https://git.proxmox.com/?a=commitdiff_plain;h=9c626dee5cdb13aad5aa1448e08186bf6452647d;p=mirror_ubuntu-focal-kernel.git drm/omap: encoder-tfp410: Don't fix timings in .set_timings() handler Both the .check_timings() and .set_timings() handlers call tfp410_fix_timings() to fix the timing's flags. As .check_timings() is always called before .set_timings(), there's no need to fix the flags twice. Remove the tfp410_fix_timings() call from .set_timings(). Signed-off-by: Laurent Pinchart Signed-off-by: Tomi Valkeinen --- diff --git a/drivers/gpu/drm/omapdrm/displays/encoder-tfp410.c b/drivers/gpu/drm/omapdrm/displays/encoder-tfp410.c index 29bda16afbdc..54f133d7da07 100644 --- a/drivers/gpu/drm/omapdrm/displays/encoder-tfp410.c +++ b/drivers/gpu/drm/omapdrm/displays/encoder-tfp410.c @@ -92,8 +92,6 @@ static void tfp410_set_timings(struct omap_dss_device *dssdev, struct panel_drv_data *ddata = to_panel_data(dssdev); struct omap_dss_device *src = dssdev->src; - tfp410_fix_timings(vm); - ddata->vm = *vm; src->ops->set_timings(src, vm);