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

Commit f3019a4d authored by Ander Conselvan de Oliveira's avatar Ander Conselvan de Oliveira Committed by Daniel Vetter
Browse files

drm/i915: Remove crtc_mode_set() hook



There's no users left after the conversion to calculate clocks before
disabling crtcs during mode set.

Signed-off-by: default avatarAnder Conselvan de Oliveira <ander.conselvan.de.oliveira@intel.com>
Signed-off-by: default avatarDaniel Vetter <daniel.vetter@ffwll.ch>
parent d6dfee7a
Loading
Loading
Loading
Loading
+0 −3
Original line number Diff line number Diff line
@@ -487,9 +487,6 @@ struct drm_i915_display_funcs {
	void (*get_plane_config)(struct intel_crtc *,
				 struct intel_plane_config *);
	int (*crtc_compute_clock)(struct intel_crtc *crtc);
	int (*crtc_mode_set)(struct intel_crtc *crtc,
			     int x, int y,
			     struct drm_framebuffer *old_fb);
	void (*crtc_enable)(struct drm_crtc *crtc);
	void (*crtc_disable)(struct drm_crtc *crtc);
	void (*off)(struct drm_crtc *crtc);
+0 −7
Original line number Diff line number Diff line
@@ -10882,13 +10882,6 @@ static int __intel_set_mode(struct drm_crtc *crtc,
		crtc->primary->fb = fb;
		crtc->x = x;
		crtc->y = y;

		if (dev_priv->display.crtc_mode_set) {
			ret = dev_priv->display.crtc_mode_set(intel_crtc,
							      x, y, fb);
			if (ret)
				goto done;
		}
	}

	/* Now enable the clocks, plane, pipe, and connectors that we set up. */