ecore_drm2: Fix error handling in _output_dpms_atomic_set

This was skipping the error path on failure and setting some state as if
it was successful.  Then the next attempt at a page flip was actually
setting this state.

So _output_dpms_atomic_set (which has always been broken) wasn't actually
the function that successfully disabled dpms.

This is confounding attempts to debug why dpms isn't coming back on
properly.

Now it won't turn *off* either, because it really never should have.

Ref T5462
This commit is contained in:
Derek Foreman 2017-06-05 16:22:08 -05:00
parent de313d6296
commit e24670b1e2
1 changed files with 1 additions and 0 deletions

View File

@ -450,6 +450,7 @@ _output_dpms_atomic_set(Ecore_Drm2_Output *output, int level)
{
ERR("Could not set dpms property: %m");
ret = EINA_FALSE;
goto err;
}
cstate->dpms.value = level;