projects
/
linux.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
0eaef95
)
soc/stm/stm32_sub_sai: Add missing '\n' in log messages
author
Sebastian Fricke
<sebastian.fricke.linux@gmail.com>
Mon, 13 Apr 2020 04:29:52 +0000
(06:29 +0200)
committer
Mark Brown
<broonie@kernel.org>
Tue, 14 Apr 2020 14:45:26 +0000
(15:45 +0100)
Message logged by 'dev_xxx()' or 'pr_xxx()' should end with a '\n'.
Fixes: 3e086ed("ASoC: stm32: add SAI drivers")
Signed-off-by: Sebastian Fricke <sebastian.fricke.linux@gmail.com>
Link:
https://lore.kernel.org/r/20200413042952.7675-1-sebastian.fricke.linux@gmail.com
Signed-off-by: Mark Brown <broonie@kernel.org>
sound/soc/stm/stm32_sai_sub.c
patch
|
blob
|
history
diff --git
a/sound/soc/stm/stm32_sai_sub.c
b/sound/soc/stm/stm32_sai_sub.c
index 0d0c9afd8791f46dafd9b11f448fb9f01efdd007..34a7c3d6fb9195abe5ee3079cae2bb36844dc176 100644
(file)
--- a/
sound/soc/stm/stm32_sai_sub.c
+++ b/
sound/soc/stm/stm32_sai_sub.c
@@
-837,7
+837,7
@@
static int stm32_sai_set_config(struct snd_soc_dai *cpu_dai,
cr1 = SAI_XCR1_DS_SET(SAI_DATASIZE_32);
break;
default:
- dev_err(cpu_dai->dev, "Data format not supported");
+ dev_err(cpu_dai->dev, "Data format not supported
\n
");
return -EINVAL;
}