projects
/
linux.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
eff4d9e
)
ASoC: rt5682: remove noisy debug messages
author
Shuming Fan
<shumingf@realtek.com>
Tue, 17 Mar 2020 07:33:21 +0000
(15:33 +0800)
committer
Mark Brown
<broonie@kernel.org>
Wed, 18 Mar 2020 21:41:25 +0000
(21:41 +0000)
Some debug messages are too noisy.
This patch removes it.
Signed-off-by: Shuming Fan <shumingf@realtek.com>
Link:
https://lore.kernel.org/r/20200317073321.12660-1-shumingf@realtek.com
Signed-off-by: Mark Brown <broonie@kernel.org>
sound/soc/codecs/rt5682.c
patch
|
blob
|
history
diff --git
a/sound/soc/codecs/rt5682.c
b/sound/soc/codecs/rt5682.c
index
7ca02a5
..
5134294
100644
(file)
--- a/
sound/soc/codecs/rt5682.c
+++ b/
sound/soc/codecs/rt5682.c
@@
-1197,11
+1197,11
@@
static int rt5682_div_sel(struct rt5682_priv *rt5682,
}
for (i = 0; i < size - 1; i++) {
-
pr_info(
"div[%d]=%d\n", i, div[i]);
+
dev_dbg(rt5682->component->dev,
"div[%d]=%d\n", i, div[i]);
if (target * div[i] == rt5682->sysclk)
return i;
if (target * div[i + 1] > rt5682->sysclk) {
-
pr_err(
"can't find div for sysclk %d\n",
+
dev_dbg(rt5682->component->dev,
"can't find div for sysclk %d\n",
rt5682->sysclk);
return i;
}