drm/i915: change power_well->lock to be mutex
authorImre Deak <imre.deak@intel.com>
Wed, 16 Oct 2013 14:25:50 +0000 (17:25 +0300)
committerDaniel Vetter <daniel.vetter@ffwll.ch>
Mon, 21 Oct 2013 18:57:01 +0000 (20:57 +0200)
commit959cbc1b8a2534bb930d237ee164893a4936a4d6
tree287daaf6c5e88e3342b996140fe3476c70567837
parentbddc76452d16cd1101ba29c0cff653cb8313b010
drm/i915: change power_well->lock to be mutex

There is no hard need for this to be a spin lock, as we don't take these
locks in irq context from anywhere. An upcoming patch will add calls to
punit read/write functions from within regions protected by this lock
and those functions need a mutex in turn. As a solution for that convert
the spin lock to be a mutex.

Signed-off-by: Imre Deak <imre.deak@intel.com>
Reviewed-by: Jesse Barnes <jbarnes@virtuousgeek.org>
Signed-off-by: Daniel Vetter <daniel.vetter@ffwll.ch>
drivers/gpu/drm/i915/i915_drv.h
drivers/gpu/drm/i915/intel_pm.c