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

Commit e7457a9a authored by Damien Lespiau's avatar Damien Lespiau Committed by Daniel Vetter
Browse files

drm/i915: Make intel_set_mode() static

parent 1414f6c0
Loading
Loading
Loading
Loading
+7 −3
Original line number Diff line number Diff line
@@ -50,6 +50,10 @@ static void i9xx_crtc_clock_get(struct intel_crtc *crtc,
static void ironlake_crtc_clock_get(struct intel_crtc *crtc,
				    struct intel_crtc_config *pipe_config);

static int intel_set_mode(struct drm_crtc *crtc, struct drm_display_mode *mode,
			  int x, int y, struct drm_framebuffer *old_fb);


typedef struct {
	int	min, max;
} intel_range_t;
@@ -8732,7 +8736,7 @@ static int __intel_set_mode(struct drm_crtc *crtc,
	return ret;
}

int intel_set_mode(struct drm_crtc *crtc,
static int intel_set_mode(struct drm_crtc *crtc,
			  struct drm_display_mode *mode,
			  int x, int y, struct drm_framebuffer *fb)
{
+0 −2
Original line number Diff line number Diff line
@@ -576,8 +576,6 @@ struct intel_set_config {
	bool mode_changed;
};

extern int intel_set_mode(struct drm_crtc *crtc, struct drm_display_mode *mode,
			  int x, int y, struct drm_framebuffer *old_fb);
extern void intel_crtc_restore_mode(struct drm_crtc *crtc);
extern void intel_crtc_load_lut(struct drm_crtc *crtc);
extern void intel_crtc_update_dpms(struct drm_crtc *crtc);