|
@@ -917,10 +917,6 @@ static void i915_hotplug_work_func(struct work_struct *work)
|
|
|
| DRM_CONNECTOR_POLL_DISCONNECT;
|
|
|
hpd_disabled = true;
|
|
|
}
|
|
|
- if (hpd_event_bits & (1 << intel_encoder->hpd_pin)) {
|
|
|
- DRM_DEBUG_KMS("Connector %s (pin %i) received hotplug event.\n",
|
|
|
- connector->name, intel_encoder->hpd_pin);
|
|
|
- }
|
|
|
}
|
|
|
/* if there were no outputs to poll, poll was disabled,
|
|
|
* therefore make sure it's enabled when disabling HPD on
|
|
@@ -939,6 +935,8 @@ static void i915_hotplug_work_func(struct work_struct *work)
|
|
|
continue;
|
|
|
intel_encoder = intel_connector->encoder;
|
|
|
if (hpd_event_bits & (1 << intel_encoder->hpd_pin)) {
|
|
|
+ DRM_DEBUG_KMS("Connector %s (pin %i) received hotplug event.\n",
|
|
|
+ connector->name, intel_encoder->hpd_pin);
|
|
|
if (intel_encoder->hot_plug)
|
|
|
intel_encoder->hot_plug(intel_encoder);
|
|
|
if (intel_hpd_irq_event(dev, connector))
|