projects
/
platform
/
kernel
/
linux-rpi.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
7ad26d6
)
ASoC: ti: fixup ams_delta_mute() function name
author
Kuninori Morimoto
<kuninori.morimoto.gx@renesas.com>
Mon, 24 Aug 2020 23:38:54 +0000
(08:38 +0900)
committer
Mark Brown
<broonie@kernel.org>
Tue, 25 Aug 2020 17:47:04 +0000
(18:47 +0100)
commit
059374fe9ea5d
("ASoC: ti: merge .digital_mute() into .mute_stream()")
merged .digital_mute() into .mute_stream().
But it didn't rename ams_delta_digital_mute() to ams_delta_mute().
This patch fixup it.
Signed-off-by: Kuninori Morimoto <kuninori.morimoto.gx@renesas.com>
Reported-by: kernel test robot <lkp@intel.com>
Link:
https://lore.kernel.org/r/87blizy5ts.wl-kuninori.morimoto.gx@renesas.com
Signed-off-by: Mark Brown <broonie@kernel.org>
sound/soc/ti/ams-delta.c
patch
|
blob
|
history
diff --git
a/sound/soc/ti/ams-delta.c
b/sound/soc/ti/ams-delta.c
index 5c47de96c529860c086c4af3f309b6e5861038f6..57feb473a579caa89a697b90da48d7ba7d426f30 100644
(file)
--- a/
sound/soc/ti/ams-delta.c
+++ b/
sound/soc/ti/ams-delta.c
@@
-446,12
+446,12
@@
static const struct snd_soc_dai_ops ams_delta_dai_ops = {
/* Will be used if the codec ever has its own digital_mute function */
static int ams_delta_startup(struct snd_pcm_substream *substream)
{
- return ams_delta_
digital_
mute(NULL, 0, substream->stream);
+ return ams_delta_mute(NULL, 0, substream->stream);
}
static void ams_delta_shutdown(struct snd_pcm_substream *substream)
{
- ams_delta_
digital_
mute(NULL, 1, substream->stream);
+ ams_delta_mute(NULL, 1, substream->stream);
}