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

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

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
Loading
Loading
Loading
Loading
+4 −4
Original line number Diff line number Diff line
@@ -327,7 +327,7 @@ 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,
static void intel_write_infoframe(struct drm_encoder *encoder,
				  union hdmi_infoframe *frame)
{
	struct intel_hdmi *intel_hdmi = enc_to_intel_hdmi(encoder);
@@ -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,