Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit ffde2ecd authored by qctecmdr's avatar qctecmdr Committed by Gerrit - the friendly Code Review server
Browse files

Merge "disp: msm: sde: populate connector modes during init"

parents 9de6eee4 a521764b
Loading
Loading
Loading
Loading
+6 −0
Original line number Diff line number Diff line
@@ -2707,6 +2707,12 @@ static int _sde_connector_install_properties(struct drm_device *dev,
				sizeof(dsi_display->panel->hdr_props),
				CONNECTOR_PROP_HDR_INFO);
		}

		mutex_lock(&c_conn->base.dev->mode_config.mutex);
		sde_connector_fill_modes(&c_conn->base,
						dev->mode_config.max_width,
						dev->mode_config.max_height);
		mutex_unlock(&c_conn->base.dev->mode_config.mutex);
	}

	msm_property_install_volatile_range(
+0 −10
Original line number Diff line number Diff line
@@ -3086,16 +3086,6 @@ static int sde_kms_cont_splash_config(struct msm_kms *kms)
			mutex_unlock(&dev->mode_config.mutex);
			return -EINVAL;
		}

		if (connector->funcs->fill_modes) {
			connector->funcs->fill_modes(connector,
					dev->mode_config.max_width,
					dev->mode_config.max_height);
		} else {
			SDE_ERROR("fill_modes api not defined\n");
			mutex_unlock(&dev->mode_config.mutex);
			return -EINVAL;
		}
		mutex_unlock(&dev->mode_config.mutex);

		crtc->state->encoder_mask = (1 << drm_encoder_index(encoder));