Skip to content

Commit ead5a41

Browse files
pcercueidaeinki
authored andcommitted
drm/exynos: dpi: Change connector type to DPI
When exynos_drm_dpi.c was written, DRM_MODE_CONNECTOR_DPI did not exist yet and I guess that's the reason why DRM_MODE_CONNECTOR_VGA was used as the connector type. However, now it makes more sense to use DRM_MODE_CONNECTOR_DPI as the connector type. Signed-off-by: Paul Cercueil <paul@crapouillou.net> Signed-off-by: Inki Dae <inki.dae@samsung.com>
1 parent 4fe7a1e commit ead5a41

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

drivers/gpu/drm/exynos/exynos_drm_dpi.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@ static int exynos_dpi_create_connector(struct drm_encoder *encoder)
101101

102102
ret = drm_connector_init(encoder->dev, connector,
103103
&exynos_dpi_connector_funcs,
104-
DRM_MODE_CONNECTOR_VGA);
104+
DRM_MODE_CONNECTOR_DPI);
105105
if (ret) {
106106
DRM_DEV_ERROR(ctx->dev,
107107
"failed to initialize connector with drm\n");

0 commit comments

Comments
 (0)