]> Git Repo - linux.git/commitdiff
ASoC: mt8183: Remove spammy logging from I2S DAI driver
authorMark Brown <[email protected]>
Sun, 26 Feb 2023 12:49:56 +0000 (12:49 +0000)
committerMark Brown <[email protected]>
Tue, 28 Feb 2023 13:58:46 +0000 (13:58 +0000)
There is a lot of dev_info() logging in normal operation in the I2S DAI
driver, remove it to avoid spamming the console.

Reviewed-by: AngeloGioacchino Del Regno <[email protected]>
Signed-off-by: Mark Brown <[email protected]>
Link: https://lore.kernel.org/r/[email protected]
Signed-off-by: Mark Brown <[email protected]>
sound/soc/mediatek/mt8183/mt8183-dai-i2s.c

index 6a9ace4180d3475bc6308a5a4df129afe7945308..38f7fa38ee95dfcf50a66393d308d5957527726f 100644 (file)
@@ -148,9 +148,6 @@ static int mt8183_i2s_hd_set(struct snd_kcontrol *kcontrol,
 
        hd_en = ucontrol->value.integer.value[0];
 
-       dev_info(afe->dev, "%s(), kcontrol name %s, hd_en %d\n",
-                __func__, kcontrol->id.name, hd_en);
-
        i2s_priv = get_i2s_priv_by_name(afe, kcontrol->id.name);
 
        if (!i2s_priv) {
@@ -276,9 +273,6 @@ static int mtk_apll_event(struct snd_soc_dapm_widget *w,
        struct snd_soc_component *cmpnt = snd_soc_dapm_to_component(w->dapm);
        struct mtk_base_afe *afe = snd_soc_component_get_drvdata(cmpnt);
 
-       dev_info(cmpnt->dev, "%s(), name %s, event 0x%x\n",
-                __func__, w->name, event);
-
        switch (event) {
        case SND_SOC_DAPM_PRE_PMU:
                if (strcmp(w->name, APLL1_W_NAME) == 0)
@@ -307,9 +301,6 @@ static int mtk_mclk_en_event(struct snd_soc_dapm_widget *w,
        struct mtk_base_afe *afe = snd_soc_component_get_drvdata(cmpnt);
        struct mtk_afe_i2s_priv *i2s_priv;
 
-       dev_info(cmpnt->dev, "%s(), name %s, event 0x%x\n",
-                __func__, w->name, event);
-
        i2s_priv = get_i2s_priv_by_name(afe, w->name);
 
        if (!i2s_priv) {
@@ -715,11 +706,6 @@ static int mtk_dai_i2s_config(struct mtk_base_afe *afe,
        unsigned int i2s_con = 0, fmt_con = I2S_FMT_I2S << I2S_FMT_SFT;
        int ret = 0;
 
-       dev_info(afe->dev, "%s(), id %d, rate %d, format %d\n",
-                __func__,
-                i2s_id,
-                rate, format);
-
        if (i2s_priv) {
                i2s_priv->rate = rate;
 
@@ -810,8 +796,6 @@ static int mtk_dai_i2s_set_sysclk(struct snd_soc_dai *dai,
                return -EINVAL;
        }
 
-       dev_info(afe->dev, "%s(), freq %d\n", __func__, freq);
-
        apll = mt8183_get_apll_by_rate(afe, freq);
        apll_rate = mt8183_get_apll_rate(afe, apll);
 
This page took 0.049242 seconds and 4 git commands to generate.