diff mbox series

[v1] ASoC: nau8822: Lower debug print priority

Message ID 20240731114828.61238-1-francesco@dolcini.it (mailing list archive)
State Accepted
Commit 9da8aa3b3ca05b22be5ba312771e6df4366e56cc
Headers show
Series [v1] ASoC: nau8822: Lower debug print priority | expand

Commit Message

Francesco Dolcini July 31, 2024, 11:48 a.m. UTC
From: Francesco Dolcini <francesco.dolcini@toradex.com>

NAU8822 codec PLL parameters are not an information that the general
user should care about, this print is supposed to be used for debugging,
adjust the debug print priority accordingly.

Signed-off-by: Francesco Dolcini <francesco.dolcini@toradex.com>
---
 sound/soc/codecs/nau8822.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Comments

Mark Brown July 31, 2024, 3:58 p.m. UTC | #1
On Wed, 31 Jul 2024 13:48:28 +0200, Francesco Dolcini wrote:
> NAU8822 codec PLL parameters are not an information that the general
> user should care about, this print is supposed to be used for debugging,
> adjust the debug print priority accordingly.
> 
> 

Applied to

   https://git.kernel.org/pub/scm/linux/kernel/git/broonie/sound.git for-next

Thanks!

[1/1] ASoC: nau8822: Lower debug print priority
      commit: 9da8aa3b3ca05b22be5ba312771e6df4366e56cc

All being well this means that it will be integrated into the linux-next
tree (usually sometime in the next 24 hours) and sent to Linus during
the next merge window (or sooner if it is a bug fix), however if
problems are discovered then the patch may be dropped or reverted.

You may get further e-mails resulting from automated or manual testing
and review of the tree, please engage with people reporting problems and
send followup patches addressing any issues that are reported if needed.

If any updates are required or you are submitting further changes they
should be sent as incremental updates against current git, existing
patches will not be replaced.

Please add any relevant lists and maintainers to the CCs when replying
to this mail.

Thanks,
Mark
diff mbox series

Patch

diff --git a/sound/soc/codecs/nau8822.c b/sound/soc/codecs/nau8822.c
index e1cbaf8a944d..fd4a96a12060 100644
--- a/sound/soc/codecs/nau8822.c
+++ b/sound/soc/codecs/nau8822.c
@@ -736,7 +736,7 @@  static int nau8822_set_pll(struct snd_soc_dai *dai, int pll_id, int source,
 		return ret;
 	}
 
-	dev_info(component->dev,
+	dev_dbg(component->dev,
 		"pll_int=%x pll_frac=%x mclk_scaler=%x pre_factor=%x\n",
 		pll_param->pll_int, pll_param->pll_frac,
 		pll_param->mclk_scaler, pll_param->pre_factor);