* ADV75xx helpers
  */
 
-static int adv7511_get_modes(struct adv7511 *adv7511,
-                            struct drm_connector *connector)
+static struct edid *adv7511_get_edid(struct adv7511 *adv7511,
+                                    struct drm_connector *connector)
 {
        struct edid *edid;
-       unsigned int count;
 
        /* Reading the EDID only works if the device is powered */
        if (!adv7511->powered) {
        if (!adv7511->powered)
                __adv7511_power_off(adv7511);
 
-
-       drm_connector_update_edid_property(connector, edid);
-       count = drm_add_edid_modes(connector, edid);
-
        adv7511_set_config_csc(adv7511, connector, adv7511->rgb,
                               drm_detect_hdmi_monitor(edid));
 
        cec_s_phys_addr_from_edid(adv7511->cec_adap, edid);
 
+       return edid;
+}
+
+static int adv7511_get_modes(struct adv7511 *adv7511,
+                            struct drm_connector *connector)
+{
+       struct edid *edid;
+       unsigned int count;
+
+       edid = adv7511_get_edid(adv7511, connector);
+
+       drm_connector_update_edid_property(connector, edid);
+       count = drm_add_edid_modes(connector, edid);
+
        kfree(edid);
 
        return count;