linux_dsm_epyc7002/sound/soc/ti
Kuninori Morimoto 059374fe9e
ASoC: ti: merge .digital_mute() into .mute_stream()
snd_soc_dai_digital_mute() is internally using both
mute_stream() (1) or digital_mute() (2), but the difference between
these 2 are only handling direction.
We can merge digital_mute() into mute_stream

	int snd_soc_dai_digital_mute(xxx, int direction)
	{
		...
		else if (dai->driver->ops->mute_stream)
(1)			return dai->driver->ops->mute_stream(xxx, direction);
		else if (direction == SNDRV_PCM_STREAM_PLAYBACK &&
			 dai->driver->ops->digital_mute)
(2)			return dai->driver->ops->digital_mute(xxx);
		...
	}

Signed-off-by: Kuninori Morimoto <kuninori.morimoto.gx@renesas.com>
Reviewed-by: Peter Ujfalusi <peter.ujfalusi@ti.com>
Link: https://lore.kernel.org/r/87blkpxxip.wl-kuninori.morimoto.gx@renesas.com
Signed-off-by: Mark Brown <broonie@kernel.org>
2020-07-16 23:06:07 +01:00
..
ams-delta.c ASoC: ti: merge .digital_mute() into .mute_stream() 2020-07-16 23:06:07 +01:00
davinci-evm.c ASoC: ti: use asoc_rtd_to_cpu() / asoc_rtd_to_codec() macro for DAI pointer 2020-03-27 14:44:52 +00:00
davinci-i2s.c
davinci-i2s.h
davinci-mcasp.c ASoC: ti: davinci-mcasp: Specify stream_name for playback/capture 2020-07-01 15:13:44 +01:00
davinci-mcasp.h
davinci-vcif.c ASoC: ti: use asoc_rtd_to_cpu() / asoc_rtd_to_codec() macro for DAI pointer 2020-03-27 14:44:52 +00:00
edma-pcm.c
edma-pcm.h
j721e-evm.c ASoC: ti: j721e-evm: Fix missing unlock on error in j721e_audio_hw_params() 2020-07-03 17:33:44 +01:00
Kconfig ASoC: ti: Add custom machine driver for j721e EVM (CPB and IVI) 2020-07-01 15:13:46 +01:00
Makefile ASoC: ti: Add custom machine driver for j721e EVM (CPB and IVI) 2020-07-01 15:13:46 +01:00
n810.c ASoC: ti: use asoc_rtd_to_cpu() / asoc_rtd_to_codec() macro for DAI pointer 2020-03-27 14:44:52 +00:00
omap3pandora.c ASoC: ti: use asoc_rtd_to_cpu() / asoc_rtd_to_codec() macro for DAI pointer 2020-03-27 14:44:52 +00:00
omap-abe-twl6040.c ASoC: ti: use asoc_rtd_to_cpu() / asoc_rtd_to_codec() macro for DAI pointer 2020-03-27 14:44:52 +00:00
omap-dmic.c ASoC: ti: use snd_soc_xxx_active() 2020-05-18 16:15:13 +01:00
omap-dmic.h
omap-hdmi.c
omap-mcbsp-priv.h
omap-mcbsp-st.c ASoC: ti: omap-mcbsp-st: Remove set, but unused variable 'w' 2020-07-09 21:56:46 +01:00
omap-mcbsp.c ASoC: ti: Fix runtime PM imbalance in omap2_mcbsp_set_clks_src 2020-05-26 17:20:22 +01:00
omap-mcbsp.h
omap-mcpdm.c ASoC: ti: use snd_soc_xxx_active() 2020-05-18 16:15:13 +01:00
omap-mcpdm.h
omap-twl4030.c
osk5912.c ASoC: ti: use asoc_rtd_to_cpu() / asoc_rtd_to_codec() macro for DAI pointer 2020-03-27 14:44:52 +00:00
rx51.c ASoC: ti: use asoc_rtd_to_cpu() / asoc_rtd_to_codec() macro for DAI pointer 2020-03-27 14:44:52 +00:00
sdma-pcm.c
sdma-pcm.h
udma-pcm.c
udma-pcm.h