diff options
Diffstat (limited to 'drivers/gpu/drm/i915/display/intel_hotplug.c')
| -rw-r--r-- | drivers/gpu/drm/i915/display/intel_hotplug.c | 4 | 
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/gpu/drm/i915/display/intel_hotplug.c b/drivers/gpu/drm/i915/display/intel_hotplug.c index 47c85ac97c87..955f6d07b0e1 100644 --- a/drivers/gpu/drm/i915/display/intel_hotplug.c +++ b/drivers/gpu/drm/i915/display/intel_hotplug.c @@ -215,8 +215,8 @@ intel_hpd_irq_storm_switch_to_polling(struct drm_i915_private *dev_priv)  static void intel_hpd_irq_setup(struct drm_i915_private *i915)  { -	if (i915->display_irqs_enabled && i915->display.hpd_irq_setup) -		i915->display.hpd_irq_setup(i915); +	if (i915->display_irqs_enabled && i915->hotplug_funcs) +		i915->hotplug_funcs->hpd_irq_setup(i915);  }  static void intel_hpd_irq_storm_reenable_work(struct work_struct *work)  |