drm: sunxi: quiet non-fatal HDMI hotplug logs

This commit is contained in:
Qubot 2026-06-06 00:38:43 +08:00
parent 6a423085b1
commit 3962f4880a
2 changed files with 3 additions and 3 deletions

View File

@ -832,7 +832,7 @@ int dw_audio_on(void)
}
if (_dw_audio_check_params() == false) {
hdmi_wrn("dw audio check params is invalid, skip audio path\n");
hdmi_trace("dw audio check params is invalid, skip audio path\n");
goto exit;
}

View File

@ -186,7 +186,7 @@ int _parse_data_block_detailed_timing(dw_dtd_t *dtd, u8 data[18])
dtd->mPixelClock = 1000 * dw_byte_to_word(data[1], data[0]);/* [10000Hz] */
if (dtd->mPixelClock < 0x01) { /* 0x0000 is defined as reserved */
hdmi_err("dw edid parse dtd timing pixel clock[%dKHz] invalid!\n",
hdmi_trace("dw edid skip reserved dtd timing pixel clock[%dKHz]\n",
dtd->mPixelClock);
return false;
}
@ -772,7 +772,7 @@ static int _edid_parser_block_base(struct edid *edid, struct sink_info_s *sink)
ARRAY_SIZE(data->data.str.str));
break;
default:
hdmi_inf("dw edid unsupport parser desc type: %d\n", data->type);
hdmi_trace("dw edid skip unsupported parser desc type: %d\n", data->type);
break;
}
continue;