Merge tag 'drm-intel-next-fixes-2016-03-16' of http://anongit.freedesktop.org/git/drm-intel into drm-next

* tag 'drm-intel-next-fixes-2016-03-16' of http://anongit.freedesktop.org/git/drm-intel:
  drm/i915: Handle -EDEADLK in drm_atomic_commit from load-detect.
This commit is contained in:
Dave Airlie 2016-03-17 08:11:31 +10:00
Родитель 5e2368a3bb 94669e6ba1
Коммит 189df01d1c
1 изменённых файлов: 2 добавлений и 1 удалений

Просмотреть файл

@ -10542,7 +10542,8 @@ found:
goto fail;
}
if (drm_atomic_commit(state)) {
ret = drm_atomic_commit(state);
if (ret) {
DRM_DEBUG_KMS("failed to set mode on load-detect pipe\n");
goto fail;
}