From: Ville Syrjälä Date: Tue, 11 Feb 2020 16:22:05 +0000 (+0200) Subject: drm/imx: Remove the bogus possible_clones setup X-Git-Tag: v5.15~303^2~28^2~3197 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=9cb6a97621ae35fd84e93b6c8e4defcdc53161f2;p=platform%2Fkernel%2Flinux-starfive.git drm/imx: Remove the bogus possible_clones setup It's not at all clear what cloning options this driver supports. So let's just clear possible_clones instead of setting it to some bogus value. v2: Adjust the FIXME (Daniel) Cc: Philipp Zabel Acked-by: Daniel Vetter Signed-off-by: Ville Syrjälä Link: https://patchwork.freedesktop.org/patch/msgid/20200211162208.16224-5-ville.syrjala@linux.intel.com --- diff --git a/drivers/gpu/drm/imx/imx-drm-core.c b/drivers/gpu/drm/imx/imx-drm-core.c index da87c70..9e8e0b7 100644 --- a/drivers/gpu/drm/imx/imx-drm-core.c +++ b/drivers/gpu/drm/imx/imx-drm-core.c @@ -139,8 +139,8 @@ int imx_drm_encoder_parse_of(struct drm_device *drm, encoder->possible_crtcs = crtc_mask; - /* FIXME: this is the mask of outputs which can clone this output. */ - encoder->possible_clones = ~0; + /* FIXME: cloning support not clear, disable it all for now */ + encoder->possible_clones = 0; return 0; }