sound: sunxi: quiet normal audio paths

This commit is contained in:
Qubot 2026-06-05 19:47:40 +08:00
parent d1d56e3b3e
commit 3958ba5d6b
3 changed files with 6 additions and 6 deletions

View File

@ -280,7 +280,7 @@ void _dw_audio_acr_config(u32 freq, u32 clock)
mode = 0;
acr_apply:
hdmi_inf("dw audio get n = %d\n", acr_n);
hdmi_trace("dw audio get n = %d\n", acr_n);
dw_write_mask(AUD_CTS3, AUD_CTS3_CTS_MANUAL_MASK, 0x0);
dw_write_mask(AUD_CTS3, AUD_CTS3_N_SHIFT_MASK, 0x0);
if (mode == 1) {

View File

@ -575,7 +575,7 @@ static s32 _sunxi_drv_audio_enable(u8 enable, u8 channel)
if (enable)
ret = sunxi_hdmi_audio_enable();
hdmi_inf("hdmi drv audio set %s %s\n",
hdmi_trace("hdmi drv audio set %s %s\n",
enable ? "enable" : "disable", ret ? "failed" : "done");
return 0;
}
@ -591,7 +591,7 @@ static s32 _sunxi_drv_audio_set_info(hdmi_audio_t *audio_para)
int ret = 0;
ret = sunxi_hdmi_audio_set_info(audio_para);
hdmi_inf("hdmi drv audio set info %s\n", ret ? "failed" : "done");
hdmi_trace("hdmi drv audio set info %s\n", ret ? "failed" : "done");
return 0;
}

View File

@ -828,7 +828,7 @@ static int ac101_startup(struct snd_pcm_substream *substream, struct snd_soc_dai
do {
regmap_read(regmap, CHIP_SOFT_RST, &reg_val);
SND_LOG_INFO("wait ac101 reset successfully, need 0x101/0x%x\n", reg_val);
SND_LOG_DEBUG("wait ac101 reset successfully, need 0x101/0x%x\n", reg_val);
} while (reg_val != 0x101);
/* recover reg */
@ -1069,7 +1069,7 @@ static int ac101_set_dai_pll(struct snd_soc_dai *dai, int pll_id, int source,
}
if (pdata->sysclk_src != SYSCLK_SRC_PLL) {
dev_err(dai->dev, "ac101 sysclk source don't pll, don't need config pll\n");
dev_dbg(dai->dev, "ac101 sysclk source don't pll, don't need config pll\n");
return 0;
}
@ -1715,7 +1715,7 @@ static int ac101_probe(struct snd_soc_component *component)
do {
regmap_read(regmap, CHIP_SOFT_RST, &reg_val);
SND_LOG_INFO("wait ac101 reset successfully, need 0x101/0x%x\n", reg_val);
SND_LOG_DEBUG("wait ac101 reset successfully, need 0x101/0x%x\n", reg_val);
} while (reg_val != 0x101);
pdata->working = (atomic_t)ATOMIC_INIT(0);