OSDN Git Service

ASoC: codecs: cs*: merge .digital_mute() into .mute_stream()
authorKuninori Morimoto <kuninori.morimoto.gx@renesas.com>
Thu, 9 Jul 2020 01:57:06 +0000 (10:57 +0900)
committerMark Brown <broonie@kernel.org>
Thu, 16 Jul 2020 22:06:19 +0000 (23:06 +0100)
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/87r1tlwiwe.wl-kuninori.morimoto.gx@renesas.com
Signed-off-by: Mark Brown <broonie@kernel.org>
sound/soc/codecs/cs4265.c
sound/soc/codecs/cs4270.c
sound/soc/codecs/cs42l42.c
sound/soc/codecs/cs42l51.c
sound/soc/codecs/cs42l52.c
sound/soc/codecs/cs42l56.c
sound/soc/codecs/cs42xx8.c
sound/soc/codecs/cs4341.c
sound/soc/codecs/cs4349.c

index 2fb65f2..d76be44 100644 (file)
@@ -378,7 +378,7 @@ static int cs4265_set_fmt(struct snd_soc_dai *codec_dai, unsigned int fmt)
        return 0;
 }
 
-static int cs4265_digital_mute(struct snd_soc_dai *dai, int mute)
+static int cs4265_mute(struct snd_soc_dai *dai, int mute, int direction)
 {
        struct snd_soc_component *component = dai->component;
 
@@ -498,9 +498,10 @@ static int cs4265_set_bias_level(struct snd_soc_component *component,
 
 static const struct snd_soc_dai_ops cs4265_ops = {
        .hw_params      = cs4265_pcm_hw_params,
-       .digital_mute   = cs4265_digital_mute,
+       .mute_stream    = cs4265_mute,
        .set_fmt        = cs4265_set_fmt,
        .set_sysclk     = cs4265_set_sysclk,
+       .no_capture_mute = 1,
 };
 
 static struct snd_soc_dai_driver cs4265_dai[] = {
index bd17c80..ddd95c8 100644 (file)
@@ -406,7 +406,7 @@ static int cs4270_hw_params(struct snd_pcm_substream *substream,
  * board does not have the MUTEA or MUTEB pins connected to such circuitry,
  * then this function will do nothing.
  */
-static int cs4270_dai_mute(struct snd_soc_dai *dai, int mute)
+static int cs4270_dai_mute(struct snd_soc_dai *dai, int mute, int direction)
 {
        struct snd_soc_component *component = dai->component;
        struct cs4270_private *cs4270 = snd_soc_component_get_drvdata(component);
@@ -471,7 +471,8 @@ static const struct snd_soc_dai_ops cs4270_dai_ops = {
        .hw_params      = cs4270_hw_params,
        .set_sysclk     = cs4270_set_dai_sysclk,
        .set_fmt        = cs4270_set_dai_fmt,
-       .digital_mute   = cs4270_dai_mute,
+       .mute_stream    = cs4270_dai_mute,
+       .no_capture_mute = 1,
 };
 
 static struct snd_soc_dai_driver cs4270_dai = {
index d391b50..210fcbe 100644 (file)
@@ -849,7 +849,7 @@ static int cs42l42_set_sysclk(struct snd_soc_dai *dai,
        return 0;
 }
 
-static int cs42l42_digital_mute(struct snd_soc_dai *dai, int mute)
+static int cs42l42_mute(struct snd_soc_dai *dai, int mute, int direction)
 {
        struct snd_soc_component *component = dai->component;
        unsigned int regval;
@@ -909,7 +909,8 @@ static const struct snd_soc_dai_ops cs42l42_ops = {
        .hw_params      = cs42l42_pcm_hw_params,
        .set_fmt        = cs42l42_set_dai_fmt,
        .set_sysclk     = cs42l42_set_sysclk,
-       .digital_mute = cs42l42_digital_mute
+       .mute_stream    = cs42l42_mute,
+       .no_capture_mute = 1,
 };
 
 static struct snd_soc_dai_driver cs42l42_dai = {
index dde9812..764f2ef 100644 (file)
@@ -484,7 +484,7 @@ static int cs42l51_hw_params(struct snd_pcm_substream *substream,
        return 0;
 }
 
-static int cs42l51_dai_mute(struct snd_soc_dai *dai, int mute)
+static int cs42l51_dai_mute(struct snd_soc_dai *dai, int mute, int direction)
 {
        struct snd_soc_component *component = dai->component;
        int reg;
@@ -511,7 +511,8 @@ static const struct snd_soc_dai_ops cs42l51_dai_ops = {
        .hw_params      = cs42l51_hw_params,
        .set_sysclk     = cs42l51_set_dai_sysclk,
        .set_fmt        = cs42l51_set_dai_fmt,
-       .digital_mute   = cs42l51_dai_mute,
+       .mute_stream    = cs42l51_dai_mute,
+       .no_capture_mute = 1,
 };
 
 static struct snd_soc_dai_driver cs42l51_dai = {
index 2ea4cba..f772628 100644 (file)
@@ -784,7 +784,7 @@ static int cs42l52_set_fmt(struct snd_soc_dai *codec_dai, unsigned int fmt)
        return 0;
 }
 
-static int cs42l52_digital_mute(struct snd_soc_dai *dai, int mute)
+static int cs42l52_mute(struct snd_soc_dai *dai, int mute, int direction)
 {
        struct snd_soc_component *component = dai->component;
 
@@ -865,9 +865,10 @@ static int cs42l52_set_bias_level(struct snd_soc_component *component,
 
 static const struct snd_soc_dai_ops cs42l52_ops = {
        .hw_params      = cs42l52_pcm_hw_params,
-       .digital_mute   = cs42l52_digital_mute,
+       .mute_stream    = cs42l52_mute,
        .set_fmt        = cs42l52_set_fmt,
        .set_sysclk     = cs42l52_set_sysclk,
+       .no_capture_mute = 1,
 };
 
 static struct snd_soc_dai_driver cs42l52_dai = {
index ac569ab..97024a6 100644 (file)
@@ -800,7 +800,7 @@ static int cs42l56_set_dai_fmt(struct snd_soc_dai *codec_dai, unsigned int fmt)
        return 0;
 }
 
-static int cs42l56_digital_mute(struct snd_soc_dai *dai, int mute)
+static int cs42l56_mute(struct snd_soc_dai *dai, int mute, int direction)
 {
        struct snd_soc_component *component = dai->component;
 
@@ -929,9 +929,10 @@ static int cs42l56_set_bias_level(struct snd_soc_component *component,
 
 static const struct snd_soc_dai_ops cs42l56_ops = {
        .hw_params      = cs42l56_pcm_hw_params,
-       .digital_mute   = cs42l56_digital_mute,
+       .mute_stream    = cs42l56_mute,
        .set_fmt        = cs42l56_set_dai_fmt,
        .set_sysclk     = cs42l56_set_sysclk,
+       .no_capture_mute = 1,
 };
 
 static struct snd_soc_dai_driver cs42l56_dai = {
index 94b1adb..5d6ef66 100644 (file)
@@ -362,7 +362,7 @@ static int cs42xx8_hw_free(struct snd_pcm_substream *substream,
        return 0;
 }
 
-static int cs42xx8_digital_mute(struct snd_soc_dai *dai, int mute)
+static int cs42xx8_mute(struct snd_soc_dai *dai, int mute, int direction)
 {
        struct snd_soc_component *component = dai->component;
        struct cs42xx8_priv *cs42xx8 = snd_soc_component_get_drvdata(component);
@@ -380,7 +380,8 @@ static const struct snd_soc_dai_ops cs42xx8_dai_ops = {
        .set_sysclk     = cs42xx8_set_dai_sysclk,
        .hw_params      = cs42xx8_hw_params,
        .hw_free        = cs42xx8_hw_free,
-       .digital_mute   = cs42xx8_digital_mute,
+       .mute_stream    = cs42xx8_mute,
+       .no_capture_mute = 1,
 };
 
 static struct snd_soc_dai_driver cs42xx8_dai = {
index ade7477..f566604 100644 (file)
@@ -116,7 +116,7 @@ static int cs4341_hw_params(struct snd_pcm_substream *substream,
                                             CS4341_MODE2_DIF, mode);
 }
 
-static int cs4341_digital_mute(struct snd_soc_dai *dai, int mute)
+static int cs4341_mute(struct snd_soc_dai *dai, int mute, int direction)
 {
        struct snd_soc_component *component = dai->component;
        int ret;
@@ -174,7 +174,8 @@ static const struct snd_kcontrol_new cs4341_controls[] = {
 static const struct snd_soc_dai_ops cs4341_dai_ops = {
        .set_fmt        = cs4341_set_fmt,
        .hw_params      = cs4341_hw_params,
-       .digital_mute   = cs4341_digital_mute,
+       .mute_stream    = cs4341_mute,
+       .no_capture_mute = 1,
 };
 
 static struct snd_soc_dai_driver cs4341_dai = {
index 3381209..fd55263 100644 (file)
@@ -131,7 +131,7 @@ static int cs4349_pcm_hw_params(struct snd_pcm_substream *substream,
        return 0;
 }
 
-static int cs4349_digital_mute(struct snd_soc_dai *dai, int mute)
+static int cs4349_mute(struct snd_soc_dai *dai, int mute, int direction)
 {
        struct snd_soc_component *component = dai->component;
        int reg;
@@ -236,7 +236,8 @@ static const struct snd_soc_dapm_route cs4349_routes[] = {
 static const struct snd_soc_dai_ops cs4349_dai_ops = {
        .hw_params      = cs4349_pcm_hw_params,
        .set_fmt        = cs4349_set_dai_fmt,
-       .digital_mute   = cs4349_digital_mute,
+       .mute_stream    = cs4349_mute,
+       .no_capture_mute = 1,
 };
 
 static struct snd_soc_dai_driver cs4349_dai = {