drm/i915/hmdi: Rename set_infoframe() to write_infoframe()
authorDamien Lespiau <damien.lespiau@intel.com>
Tue, 6 Aug 2013 19:32:24 +0000 (20:32 +0100)
committerDaniel Vetter <daniel.vetter@ffwll.ch>
Thu, 8 Aug 2013 12:04:51 +0000 (14:04 +0200)
set_frame() wraps the write_frame() vfunc. Be consistent and name the
wrapping function like the vfunc being called.

It's doubly confusing as we also have a set_infoframes() vfunc and
set_infoframe() doesn't wrap it.

Reviewed-by: Ville Syrjälä <ville.syrjala@linux.intel.com>
Signed-off-by: Damien Lespiau <damien.lespiau@intel.com>
Signed-off-by: Daniel Vetter <daniel.vetter@ffwll.ch>
drivers/gpu/drm/i915/intel_hdmi.c

index b54fe29f2eb5bfb596d972aa53f7848dd5843d38..88562913fb7f1f02ee1a8357f66557bc6d6dcd45 100644 (file)
@@ -327,8 +327,8 @@ static void hsw_write_infoframe(struct drm_encoder *encoder,
  * trick them by giving an offset into the buffer and moving back the header
  * bytes by one.
  */
-static void intel_set_infoframe(struct drm_encoder *encoder,
-                               union hdmi_infoframe *frame)
+static void intel_write_infoframe(struct drm_encoder *encoder,
+                                 union hdmi_infoframe *frame)
 {
        struct intel_hdmi *intel_hdmi = enc_to_intel_hdmi(encoder);
        uint8_t buffer[VIDEO_DIP_DATA_SIZE];
@@ -373,7 +373,7 @@ static void intel_hdmi_set_avi_infoframe(struct drm_encoder *encoder,
                                HDMI_QUANTIZATION_RANGE_FULL;
        }
 
-       intel_set_infoframe(encoder, &frame);
+       intel_write_infoframe(encoder, &frame);
 }
 
 static void intel_hdmi_set_spd_infoframe(struct drm_encoder *encoder)
@@ -389,7 +389,7 @@ static void intel_hdmi_set_spd_infoframe(struct drm_encoder *encoder)
 
        frame.spd.sdi = HDMI_SPD_SDI_PC;
 
-       intel_set_infoframe(encoder, &frame);
+       intel_write_infoframe(encoder, &frame);
 }
 
 static void g4x_set_infoframes(struct drm_encoder *encoder,
This page took 0.025803 seconds and 5 git commands to generate.