Skip to content

Commit d17e61a

Browse files
xdarklightsuperna9999
authored andcommitted
drm/meson: fix debug log statement when setting the HDMI clocks
The "phy" and "vclk" frequency labels were swapped, making it more difficult to debug driver errors. Swap the label order to make them match with the actual frequencies printed to correct this. Fixes: e5fab2e ("drm/meson: vclk: add support for YUV420 setup") Signed-off-by: Martin Blumenstingl <[email protected]> Reviewed-by: Neil Armstrong <[email protected]> Signed-off-by: Neil Armstrong <[email protected]> Link: https://lore.kernel.org/r/[email protected]
1 parent c0317ad commit d17e61a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

drivers/gpu/drm/meson/meson_encoder_hdmi.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@ static void meson_encoder_hdmi_set_vclk(struct meson_encoder_hdmi *encoder_hdmi,
109109
venc_freq /= 2;
110110

111111
dev_dbg(priv->dev,
112-
"vclk:%lluHz phy=%lluHz venc=%lluHz hdmi=%lluHz enci=%d\n",
112+
"phy:%lluHz vclk=%lluHz venc=%lluHz hdmi=%lluHz enci=%d\n",
113113
phy_freq, vclk_freq, venc_freq, hdmi_freq,
114114
priv->venc.hdmi_use_enci);
115115

0 commit comments

Comments
 (0)