Lines Matching refs:edid
132 struct edid *edid = NULL; in cdv_hdmi_detect() local
135 edid = drm_get_edid(connector, &gma_encoder->i2c_bus->adapter); in cdv_hdmi_detect()
139 if (edid) { in cdv_hdmi_detect()
140 if (edid->input & DRM_EDID_INPUT_DIGITAL) { in cdv_hdmi_detect()
143 drm_detect_hdmi_monitor(edid); in cdv_hdmi_detect()
145 drm_detect_monitor_audio(edid); in cdv_hdmi_detect()
147 kfree(edid); in cdv_hdmi_detect()
214 struct edid *edid = NULL; in cdv_hdmi_get_modes() local
217 edid = drm_get_edid(connector, &gma_encoder->i2c_bus->adapter); in cdv_hdmi_get_modes()
218 if (edid) { in cdv_hdmi_get_modes()
219 drm_mode_connector_update_edid_property(connector, edid); in cdv_hdmi_get_modes()
220 ret = drm_add_edid_modes(connector, edid); in cdv_hdmi_get_modes()
221 kfree(edid); in cdv_hdmi_get_modes()