]> git.karo-electronics.de Git - linux-beck.git/commitdiff
drm/i915: Make intel_pipe_has_type() take an output type enum
authorDamien Lespiau <damien.lespiau@intel.com>
Wed, 29 Oct 2014 11:16:59 +0000 (11:16 +0000)
committerDaniel Vetter <daniel.vetter@ffwll.ch>
Fri, 7 Nov 2014 17:41:48 +0000 (18:41 +0100)
As Paulo said when introducing the enum, having more types is really
good to document what should go where (int foo(int, int, bool, bool).

Cc: Paulo Zanoni <paulo.r.zanoni@intel.com>
Signed-off-by: Damien Lespiau <damien.lespiau@intel.com>
Reviewed-by: Jani Nikula <jani.nikula@intel.com>
Signed-off-by: Daniel Vetter <daniel.vetter@ffwll.ch>
drivers/gpu/drm/i915/intel_display.c
drivers/gpu/drm/i915/intel_drv.h

index a05a8573f1a37eb104bdff359a2bad66ef015b32..d7951426f347ead7bc54b45917254c308826b96c 100644 (file)
@@ -408,7 +408,7 @@ static void vlv_clock(int refclk, intel_clock_t *clock)
 /**
  * Returns whether any output on the specified pipe is of the specified type
  */
-bool intel_pipe_has_type(struct intel_crtc *crtc, int type)
+bool intel_pipe_has_type(struct intel_crtc *crtc, enum intel_output_type type)
 {
        struct drm_device *dev = crtc->base.dev;
        struct intel_encoder *encoder;
index 82d89167cd2f05a50064ea3d2558e72daa8fb11a..7fab2d808a40c4cac0580c11f0764a97fdcb894e 100644 (file)
@@ -881,7 +881,7 @@ int intel_get_pipe_from_crtc_id(struct drm_device *dev, void *data,
                                struct drm_file *file_priv);
 enum transcoder intel_pipe_to_cpu_transcoder(struct drm_i915_private *dev_priv,
                                             enum pipe pipe);
-bool intel_pipe_has_type(struct intel_crtc *crtc, int type);
+bool intel_pipe_has_type(struct intel_crtc *crtc, enum intel_output_type type);
 static inline void
 intel_wait_for_vblank(struct drm_device *dev, int pipe)
 {