Skip to content

Commit 9cb6a97

Browse files
committed
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 <p.zabel@pengutronix.de> Acked-by: Daniel Vetter <daniel.vetter@ffwll.ch> Signed-off-by: Ville Syrjälä <ville.syrjala@linux.intel.com> Link: https://patchwork.freedesktop.org/patch/msgid/20200211162208.16224-5-ville.syrjala@linux.intel.com
1 parent 8a7827e commit 9cb6a97

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

drivers/gpu/drm/imx/imx-drm-core.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -139,8 +139,8 @@ int imx_drm_encoder_parse_of(struct drm_device *drm,
139139

140140
encoder->possible_crtcs = crtc_mask;
141141

142-
/* FIXME: this is the mask of outputs which can clone this output. */
143-
encoder->possible_clones = ~0;
142+
/* FIXME: cloning support not clear, disable it all for now */
143+
encoder->possible_clones = 0;
144144

145145
return 0;
146146
}

0 commit comments

Comments
 (0)