1
0
mirror of https://github.com/openbsd/src.git synced 2026-06-18 07:13:36 +02:00

In inteldrm_activate(), move the rasops_show_screen() call to before

drm_client_dev_restore().  The same order as inteldrm_doswitch() and
inteldrm_enter_ddb().
This commit is contained in:
jsg
2026-06-10 04:33:13 +00:00
parent 1a6a13bae9
commit 01c8afc222
+1 -1
View File
@@ -2567,8 +2567,8 @@ inteldrm_activate(struct device *self, int act)
i915_pm_resume_early(self);
i915_pm_resume(self);
}
drm_client_dev_restore(dev);
rasops_show_screen(ri, ri->ri_active, 0, NULL, NULL);
drm_client_dev_restore(dev);
rv = config_suspend(dev->dev, act);
break;
}