diff mbox series

ASoC: ti: fixup ams_delta_mute() function name

Message ID 87blizy5ts.wl-kuninori.morimoto.gx@renesas.com (mailing list archive)
State Accepted
Commit d062085d61b1c2015845d1d9c475266381cce785
Headers show
Series ASoC: ti: fixup ams_delta_mute() function name | expand

Commit Message

Kuninori Morimoto Aug. 24, 2020, 11:38 p.m. UTC
From: Kuninori Morimoto <kuninori.morimoto.gx@renesas.com>

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>
---
 sound/soc/ti/ams-delta.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

Comments

Kuninori Morimoto Aug. 25, 2020, 12:08 a.m. UTC | #1
Hi Mark

> From: Kuninori Morimoto <kuninori.morimoto.gx@renesas.com>
> 
> 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>
> ---

This is for mark/for-5.9


Thank you for your help !!

Best regards
---
Kuninori Morimoto
Mark Brown Aug. 25, 2020, 8:19 p.m. UTC | #2
On 25 Aug 2020 08:38:54 +0900, Kuninori Morimoto wrote:
> 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.

Applied to

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

Thanks!

[1/1] ASoC: ti: fixup ams_delta_mute() function name
      commit: d062085d61b1c2015845d1d9c475266381cce785

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/ti/ams-delta.c b/sound/soc/ti/ams-delta.c
index 5c47de96c529..57feb473a579 100644
--- 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);
 }