Commit 9198ee5b authored by Damien Lespiau's avatar Damien Lespiau Committed by Daniel Vetter

drm/i915/hmdi: Rename set_infoframe() to write_infoframe()

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: default avatarVille Syrjälä <ville.syrjala@linux.intel.com>
Signed-off-by: default avatarDamien Lespiau <damien.lespiau@intel.com>
Signed-off-by: default avatarDaniel Vetter <daniel.vetter@ffwll.ch>
parent 15747638
...@@ -327,8 +327,8 @@ static void hsw_write_infoframe(struct drm_encoder *encoder, ...@@ -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 * trick them by giving an offset into the buffer and moving back the header
* bytes by one. * bytes by one.
*/ */
static void intel_set_infoframe(struct drm_encoder *encoder, static void intel_write_infoframe(struct drm_encoder *encoder,
union hdmi_infoframe *frame) union hdmi_infoframe *frame)
{ {
struct intel_hdmi *intel_hdmi = enc_to_intel_hdmi(encoder); struct intel_hdmi *intel_hdmi = enc_to_intel_hdmi(encoder);
uint8_t buffer[VIDEO_DIP_DATA_SIZE]; uint8_t buffer[VIDEO_DIP_DATA_SIZE];
...@@ -373,7 +373,7 @@ static void intel_hdmi_set_avi_infoframe(struct drm_encoder *encoder, ...@@ -373,7 +373,7 @@ static void intel_hdmi_set_avi_infoframe(struct drm_encoder *encoder,
HDMI_QUANTIZATION_RANGE_FULL; 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) 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) ...@@ -389,7 +389,7 @@ static void intel_hdmi_set_spd_infoframe(struct drm_encoder *encoder)
frame.spd.sdi = HDMI_SPD_SDI_PC; 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, static void g4x_set_infoframes(struct drm_encoder *encoder,
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment