We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5447f72 commit bc9ed15Copy full SHA for bc9ed15
drivers/gpu/drm/drm_probe_helper.c
@@ -262,8 +262,10 @@ static int drm_helper_probe_single_connector_modes_merge_bits(struct drm_connect
262
DRM_DEBUG_KMS("[CONNECTOR:%d:%s] probed modes :\n", connector->base.id,
263
connector->name);
264
265
- edid_manufacturer = (struct edid *) connector->edid_blob_ptr->data;
266
- drm_iex_monitor = drm_dect_iex_edid(edid_manufacturer);
+ if (!strcmp(connector->name, "HDMI-A-1")) {
+ edid_manufacturer = (struct edid *) connector->edid_blob_ptr->data;
267
+ drm_iex_monitor = drm_dect_iex_edid(edid_manufacturer);
268
+ }
269
list_for_each_entry(mode, &connector->modes, head) {
270
drm_mode_set_crtcinfo(mode, CRTC_INTERLACE_HALVE_V);
271
drm_mode_debug_printmodeline(mode);
0 commit comments