Commit f239b799 authored by Ville Syrjälä's avatar Ville Syrjälä
Browse files

drm/i915: Don't pass the crtc to intel_modeset_pipe_config()



We already pass the crtc's state to intel_modeset_pipe_config()
so passing the crtc as well is redundant.

Signed-off-by: default avatarVille Syrjälä <ville.syrjala@linux.intel.com>
Link: https://patchwork.freedesktop.org/patch/msgid/20190517193132.8140-7-ville.syrjala@linux.intel.com


Reviewed-by: default avatarMaarten Lankhorst <maarten.lankhorst@linux.intel.com>
parent 1b9994c7
Loading
Loading
Loading
Loading
+3 −3
Original line number Diff line number Diff line
@@ -12017,9 +12017,9 @@ clear_intel_crtc_state(struct intel_crtc_state *crtc_state)
}

static int
intel_modeset_pipe_config(struct drm_crtc *crtc,
			  struct intel_crtc_state *pipe_config)
intel_modeset_pipe_config(struct intel_crtc_state *pipe_config)
{
	struct drm_crtc *crtc = pipe_config->base.crtc;
	struct drm_atomic_state *state = pipe_config->base.state;
	struct intel_encoder *encoder;
	struct drm_connector *connector;
@@ -13386,7 +13386,7 @@ static int intel_atomic_check(struct drm_device *dev,
			continue;
		}

		ret = intel_modeset_pipe_config(crtc, pipe_config);
		ret = intel_modeset_pipe_config(pipe_config);
		if (ret == -EDEADLK)
			return ret;
		if (ret) {