media: rockchip: hdmirx: change HDMI unplug message to debug

If HDMI 5V power is missing, set log unplug event
at debug level instead of error level to reduce log spam.

This change was introduced in commit cc4331bada ("media: rockchip: hdmirx: silence spam on opi5plus")
and accidentally reverted in commit c15bc2efba ("add itc type to hdmirx")

Signed-off-by: Khusika Dhamar Gusti <khusikadhamar@gmail.com>
This commit is contained in:
Khusika Dhamar Gusti
2025-07-16 08:16:57 +07:00
committed by boogie
parent c2f34729eb
commit 95688516be

View File

@@ -1713,7 +1713,8 @@ static int hdmirx_wait_lock_and_get_timing(struct rk_hdmirx_dev *hdmirx_dev)
if (!tx_5v_power_present(hdmirx_dev)) {
v4l2_ctrl_s_ctrl(hdmirx_dev->content_type, V4L2_DV_IT_CONTENT_TYPE_NO_ITC);
v4l2_err(v4l2_dev, "%s HDMI pull out, return!\n", __func__);
v4l2_dbg(1, debug, v4l2_dev,
"%s HDMI pull out, return!\n", __func__);
return -1;
}