ecore-drm: Reenable setting the VT to graphics mode

Signed-off-by: Chris Michael <cp.michael@samsung.com>
This commit is contained in:
Chris Michael 2014-07-15 09:41:29 -04:00
parent c043021397
commit 9c20a1b979
1 changed files with 5 additions and 5 deletions

View File

@ -113,11 +113,11 @@ _ecore_drm_tty_setup(Ecore_Drm_Device *dev)
/* return EINA_FALSE; */
/* } */
/* if (ioctl(dev->tty.fd, KDSETMODE, KD_GRAPHICS)) */
/* { */
/* ERR("Could not set graphics mode: %m"); */
/* return EINA_FALSE; */
/* } */
if (ioctl(dev->tty.fd, KDSETMODE, KD_GRAPHICS))
{
ERR("Could not set graphics mode: %m");
return EINA_FALSE;
}
vtmode.mode = VT_PROCESS;
vtmode.waitv = 0;