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

Commit 3b2b36e5 authored by Laurent Pinchart's avatar Laurent Pinchart
Browse files

drm: adv7511: Remove interlaced mode check



The ADV7511 supports interlaced modes fine, there's no need to reject
them.

Signed-off-by: default avatarLaurent Pinchart <laurent.pinchart+renesas@ideasonboard.com>
parent 4e0cd681
Loading
Loading
Loading
Loading
+0 −3
Original line number Diff line number Diff line
@@ -644,9 +644,6 @@ static int adv7511_encoder_mode_valid(struct drm_encoder *encoder,
	if (mode->clock > 165000)
		return MODE_CLOCK_HIGH;

	if (mode->flags & DRM_MODE_FLAG_INTERLACE)
		return MODE_NO_INTERLACE;

	return MODE_OK;
}