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

Commit 4635c17d authored by Tomi Valkeinen's avatar Tomi Valkeinen
Browse files

drm/omap: DVI connector fix



The omapdrm driver currently uses a string comparison to find out if the
display is a DVI display. This is not reliable, and as we now have a
specific display type for DVI, let's use that.

Signed-off-by: default avatarTomi Valkeinen <tomi.valkeinen@ti.com>
parent bc24b8b6
Loading
Loading
Loading
Loading
+2 −4
Original line number Diff line number Diff line
@@ -65,10 +65,8 @@ static int get_connector_type(struct omap_dss_device *dssdev)
	switch (dssdev->type) {
	case OMAP_DISPLAY_TYPE_HDMI:
		return DRM_MODE_CONNECTOR_HDMIA;
	case OMAP_DISPLAY_TYPE_DPI:
		if (!strcmp(dssdev->name, "dvi"))
	case OMAP_DISPLAY_TYPE_DVI:
		return DRM_MODE_CONNECTOR_DVID;
		/* fallthrough */
	default:
		return DRM_MODE_CONNECTOR_Unknown;
	}