Commit 38803ce7 authored by Kuninori Morimoto's avatar Kuninori Morimoto Committed by Mark Brown

ASoC: codecs: tas*: 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: default avatarKuninori Morimoto <kuninori.morimoto.gx@renesas.com>
Reviewed-by: default avatarPeter Ujfalusi <peter.ujfalusi@ti.com>
Link: https://lore.kernel.org/r/873661xxhu.wl-kuninori.morimoto.gx@renesas.comSigned-off-by: default avatarMark Brown <broonie@kernel.org>
parent 960af79d
...@@ -465,7 +465,7 @@ static int tas2552_set_dai_tdm_slot(struct snd_soc_dai *dai, ...@@ -465,7 +465,7 @@ static int tas2552_set_dai_tdm_slot(struct snd_soc_dai *dai,
return 0; return 0;
} }
static int tas2552_mute(struct snd_soc_dai *dai, int mute) static int tas2552_mute(struct snd_soc_dai *dai, int mute, int direction)
{ {
u8 cfg1_reg = 0; u8 cfg1_reg = 0;
struct snd_soc_component *component = dai->component; struct snd_soc_component *component = dai->component;
...@@ -519,7 +519,8 @@ static const struct snd_soc_dai_ops tas2552_speaker_dai_ops = { ...@@ -519,7 +519,8 @@ static const struct snd_soc_dai_ops tas2552_speaker_dai_ops = {
.set_sysclk = tas2552_set_dai_sysclk, .set_sysclk = tas2552_set_dai_sysclk,
.set_fmt = tas2552_set_dai_fmt, .set_fmt = tas2552_set_dai_fmt,
.set_tdm_slot = tas2552_set_dai_tdm_slot, .set_tdm_slot = tas2552_set_dai_tdm_slot,
.digital_mute = tas2552_mute, .mute_stream = tas2552_mute,
.no_capture_mute = 1,
}; };
/* Formats supported by TAS2552 driver. */ /* Formats supported by TAS2552 driver. */
......
...@@ -394,7 +394,7 @@ static int tas2562_set_dai_fmt(struct snd_soc_dai *dai, unsigned int fmt) ...@@ -394,7 +394,7 @@ static int tas2562_set_dai_fmt(struct snd_soc_dai *dai, unsigned int fmt)
return 0; return 0;
} }
static int tas2562_mute(struct snd_soc_dai *dai, int mute) static int tas2562_mute(struct snd_soc_dai *dai, int mute, int direction)
{ {
struct snd_soc_component *component = dai->component; struct snd_soc_component *component = dai->component;
...@@ -612,7 +612,8 @@ static const struct snd_soc_dai_ops tas2562_speaker_dai_ops = { ...@@ -612,7 +612,8 @@ static const struct snd_soc_dai_ops tas2562_speaker_dai_ops = {
.hw_params = tas2562_hw_params, .hw_params = tas2562_hw_params,
.set_fmt = tas2562_set_dai_fmt, .set_fmt = tas2562_set_dai_fmt,
.set_tdm_slot = tas2562_set_dai_tdm_slot, .set_tdm_slot = tas2562_set_dai_tdm_slot,
.digital_mute = tas2562_mute, .mute_stream = tas2562_mute,
.no_capture_mute = 1,
}; };
static struct snd_soc_dai_driver tas2562_dai[] = { static struct snd_soc_dai_driver tas2562_dai[] = {
......
...@@ -189,7 +189,7 @@ static const struct snd_soc_dapm_route tas2770_audio_map[] = { ...@@ -189,7 +189,7 @@ static const struct snd_soc_dapm_route tas2770_audio_map[] = {
{"VSENSE", "Switch", "VMON"}, {"VSENSE", "Switch", "VMON"},
}; };
static int tas2770_mute(struct snd_soc_dai *dai, int mute) static int tas2770_mute(struct snd_soc_dai *dai, int mute, int direction)
{ {
struct snd_soc_component *component = dai->component; struct snd_soc_component *component = dai->component;
int ret; int ret;
...@@ -530,10 +530,11 @@ static int tas2770_set_dai_tdm_slot(struct snd_soc_dai *dai, ...@@ -530,10 +530,11 @@ static int tas2770_set_dai_tdm_slot(struct snd_soc_dai *dai,
} }
static struct snd_soc_dai_ops tas2770_dai_ops = { static struct snd_soc_dai_ops tas2770_dai_ops = {
.digital_mute = tas2770_mute, .mute_stream = tas2770_mute,
.hw_params = tas2770_hw_params, .hw_params = tas2770_hw_params,
.set_fmt = tas2770_set_fmt, .set_fmt = tas2770_set_fmt,
.set_tdm_slot = tas2770_set_dai_tdm_slot, .set_tdm_slot = tas2770_set_dai_tdm_slot,
.no_capture_mute = 1,
}; };
#define TAS2770_FORMATS (SNDRV_PCM_FMTBIT_S16_LE | SNDRV_PCM_FMTBIT_S20_3LE |\ #define TAS2770_FORMATS (SNDRV_PCM_FMTBIT_S16_LE | SNDRV_PCM_FMTBIT_S20_3LE |\
......
...@@ -301,7 +301,7 @@ static int tas571x_hw_params(struct snd_pcm_substream *substream, ...@@ -301,7 +301,7 @@ static int tas571x_hw_params(struct snd_pcm_substream *substream,
TAS571X_SDI_FMT_MASK, val); TAS571X_SDI_FMT_MASK, val);
} }
static int tas571x_mute(struct snd_soc_dai *dai, int mute) static int tas571x_mute(struct snd_soc_dai *dai, int mute, int direction)
{ {
struct snd_soc_component *component = dai->component; struct snd_soc_component *component = dai->component;
u8 sysctl2; u8 sysctl2;
...@@ -354,7 +354,8 @@ static int tas571x_set_bias_level(struct snd_soc_component *component, ...@@ -354,7 +354,8 @@ static int tas571x_set_bias_level(struct snd_soc_component *component,
static const struct snd_soc_dai_ops tas571x_dai_ops = { static const struct snd_soc_dai_ops tas571x_dai_ops = {
.set_fmt = tas571x_set_dai_fmt, .set_fmt = tas571x_set_dai_fmt,
.hw_params = tas571x_hw_params, .hw_params = tas571x_hw_params,
.digital_mute = tas571x_mute, .mute_stream = tas571x_mute,
.no_capture_mute = 1,
}; };
......
...@@ -199,7 +199,7 @@ static int tas5720_set_dai_tdm_slot(struct snd_soc_dai *dai, ...@@ -199,7 +199,7 @@ static int tas5720_set_dai_tdm_slot(struct snd_soc_dai *dai,
return ret; return ret;
} }
static int tas5720_mute(struct snd_soc_dai *dai, int mute) static int tas5720_mute(struct snd_soc_dai *dai, int mute, int direction)
{ {
struct snd_soc_component *component = dai->component; struct snd_soc_component *component = dai->component;
int ret; int ret;
...@@ -604,7 +604,8 @@ static const struct snd_soc_dai_ops tas5720_speaker_dai_ops = { ...@@ -604,7 +604,8 @@ static const struct snd_soc_dai_ops tas5720_speaker_dai_ops = {
.hw_params = tas5720_hw_params, .hw_params = tas5720_hw_params,
.set_fmt = tas5720_set_dai_fmt, .set_fmt = tas5720_set_dai_fmt,
.set_tdm_slot = tas5720_set_dai_tdm_slot, .set_tdm_slot = tas5720_set_dai_tdm_slot,
.digital_mute = tas5720_mute, .mute_stream = tas5720_mute,
.no_capture_mute = 1,
}; };
/* /*
......
...@@ -252,7 +252,7 @@ static int tas6424_set_dai_tdm_slot(struct snd_soc_dai *dai, ...@@ -252,7 +252,7 @@ static int tas6424_set_dai_tdm_slot(struct snd_soc_dai *dai,
return 0; return 0;
} }
static int tas6424_mute(struct snd_soc_dai *dai, int mute) static int tas6424_mute(struct snd_soc_dai *dai, int mute, int direction)
{ {
struct snd_soc_component *component = dai->component; struct snd_soc_component *component = dai->component;
struct tas6424_data *tas6424 = snd_soc_component_get_drvdata(component); struct tas6424_data *tas6424 = snd_soc_component_get_drvdata(component);
...@@ -382,7 +382,8 @@ static const struct snd_soc_dai_ops tas6424_speaker_dai_ops = { ...@@ -382,7 +382,8 @@ static const struct snd_soc_dai_ops tas6424_speaker_dai_ops = {
.hw_params = tas6424_hw_params, .hw_params = tas6424_hw_params,
.set_fmt = tas6424_set_dai_fmt, .set_fmt = tas6424_set_dai_fmt,
.set_tdm_slot = tas6424_set_dai_tdm_slot, .set_tdm_slot = tas6424_set_dai_tdm_slot,
.digital_mute = tas6424_mute, .mute_stream = tas6424_mute,
.no_capture_mute = 1,
}; };
static struct snd_soc_dai_driver tas6424_dai[] = { static struct snd_soc_dai_driver tas6424_dai[] = {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment