diff options
Diffstat (limited to 'drivers/gpu/drm/i915/intel_hotplug.c')
| -rw-r--r-- | drivers/gpu/drm/i915/intel_hotplug.c | 8 | 
1 files changed, 4 insertions, 4 deletions
| diff --git a/drivers/gpu/drm/i915/intel_hotplug.c b/drivers/gpu/drm/i915/intel_hotplug.c index e24174d08fed..b8937c788f03 100644 --- a/drivers/gpu/drm/i915/intel_hotplug.c +++ b/drivers/gpu/drm/i915/intel_hotplug.c @@ -23,7 +23,6 @@  #include <linux/kernel.h> -#include <drm/drmP.h>  #include <drm/i915_drm.h>  #include "i915_drv.h" @@ -227,9 +226,10 @@ static void intel_hpd_irq_storm_reenable_work(struct work_struct *work)  		container_of(work, typeof(*dev_priv),  			     hotplug.reenable_work.work);  	struct drm_device *dev = &dev_priv->drm; +	intel_wakeref_t wakeref;  	enum hpd_pin pin; -	intel_runtime_pm_get(dev_priv); +	wakeref = intel_runtime_pm_get(dev_priv);  	spin_lock_irq(&dev_priv->irq_lock);  	for_each_hpd_pin(pin) { @@ -262,7 +262,7 @@ static void intel_hpd_irq_storm_reenable_work(struct work_struct *work)  		dev_priv->display.hpd_irq_setup(dev_priv);  	spin_unlock_irq(&dev_priv->irq_lock); -	intel_runtime_pm_put(dev_priv); +	intel_runtime_pm_put(dev_priv, wakeref);  }  bool intel_encoder_hotplug(struct intel_encoder *encoder, @@ -470,7 +470,7 @@ void intel_hpd_irq_handler(struct drm_i915_private *dev_priv,  			 * hotplug bits itself. So only WARN about unexpected  			 * interrupts on saner platforms.  			 */ -			WARN_ONCE(!HAS_GMCH_DISPLAY(dev_priv), +			WARN_ONCE(!HAS_GMCH(dev_priv),  				  "Received HPD interrupt on pin %d although disabled\n", pin);  			continue;  		} | 
