summaryrefslogtreecommitdiffstats
path: root/sys/dev/drm
diff options
context:
space:
mode:
Diffstat (limited to 'sys/dev/drm')
-rw-r--r--sys/dev/drm/i915_drv.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/sys/dev/drm/i915_drv.c b/sys/dev/drm/i915_drv.c
index 39db236..b84e018 100644
--- a/sys/dev/drm/i915_drv.c
+++ b/sys/dev/drm/i915_drv.c
@@ -52,7 +52,10 @@ static int i915_suspend(device_t kdev)
return -ENODEV;
}
+ DRM_LOCK();
+ DRM_DEBUG("starting suspend\n");
i915_save_state(dev);
+ DRM_UNLOCK();
return (bus_generic_suspend(kdev));
}
@@ -61,7 +64,10 @@ static int i915_resume(device_t kdev)
{
struct drm_device *dev = device_get_softc(kdev);
+ DRM_LOCK();
i915_restore_state(dev);
+ DRM_DEBUG("finished resume\n");
+ DRM_UNLOCK();
return (bus_generic_resume(kdev));
}
OpenPOWER on IntegriCloud