aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/gpu
diff options
context:
space:
mode:
authorAlexander Shishkin <alexander.shishkin@linux.intel.com>2012-08-31 15:50:55 +0300
committerDaniel Vetter <daniel.vetter@ffwll.ch>2012-09-08 19:04:04 +0200
commit99d0b1db6ccd0c0e554398e8a579ff3dd4d119ee (patch)
tree4ca779aa9f1647f8b43697c9dde1d7c2ae1facbc /drivers/gpu
parentdrm/i915: do not expose a dysfunctional backlight interface to userspace (diff)
downloadlinux-dev-99d0b1db6ccd0c0e554398e8a579ff3dd4d119ee.tar.xz
linux-dev-99d0b1db6ccd0c0e554398e8a579ff3dd4d119ee.zip
drm/i915: initialize dpio_lock spin lock
This thing is killing lockdep. Signed-off-by: Alexander Shishkin <alexander.shishkin@linux.intel.com> [Jani: move the init next to the other spin lock inits] Signed-off-by: Jani Nikula <jani.nikula@intel.com> Acked-by: Ben Widawsky <ben@bwidawsk.net> Signed-off-by: Daniel Vetter <daniel.vetter@ffwll.ch>
Diffstat (limited to 'drivers/gpu')
-rw-r--r--drivers/gpu/drm/i915/i915_dma.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/gpu/drm/i915/i915_dma.c b/drivers/gpu/drm/i915/i915_dma.c
index 9cf7dfe022b9..914c0dfabe60 100644
--- a/drivers/gpu/drm/i915/i915_dma.c
+++ b/drivers/gpu/drm/i915/i915_dma.c
@@ -1587,6 +1587,7 @@ int i915_driver_load(struct drm_device *dev, unsigned long flags)
spin_lock_init(&dev_priv->irq_lock);
spin_lock_init(&dev_priv->error_lock);
spin_lock_init(&dev_priv->rps_lock);
+ spin_lock_init(&dev_priv->dpio_lock);
if (IS_IVYBRIDGE(dev) || IS_HASWELL(dev))
dev_priv->num_pipe = 3;