ecore-drm: Remove call to set drm mode when creating an output

Summary: As it turns out, we don't need to make the call to set an
output mode during creation. The mode will end up getting set anyway
when we set the first buffer.

@fix

Signed-off-by: Chris Michael <cp.michael@samsung.com>
This commit is contained in:
Chris Michael 2015-05-21 10:51:29 -04:00
parent 8651f51add
commit 8a4922132f
1 changed files with 0 additions and 13 deletions

View File

@ -498,19 +498,6 @@ _ecore_drm_output_create(Ecore_Drm_Device *dev, drmModeRes *res, drmModeConnecto
output->current_mode->flags |= DRM_MODE_TYPE_DEFAULT;
if (output->connected)
{
if (drmModeSetCrtc(output->dev->drm.fd, output->crtc_id,
output->crtc->buffer_id, 0, 0,
&output->conn_id, 1, &output->current_mode->info) < 0)
{
ERR("Failed to set Mode %dx%d for Output %s: %m",
output->current_mode->width, output->current_mode->height,
output->name);
goto err;
}
}
/* try to init backlight */
output->backlight =
_ecore_drm_output_backlight_init(output, conn->connector_type);