ASoC: codecs: use snd_soc_xxx_active()
authorKuninori Morimoto <kuninori.morimoto.gx@renesas.com>
Fri, 15 May 2020 00:47:11 +0000 (09:47 +0900)
committerMark Brown <broonie@kernel.org>
Mon, 18 May 2020 15:15:07 +0000 (16:15 +0100)
We have snd_soc_dai/dai_stream/component_active() macro
This patch uses it.

Signed-off-by: Kuninori Morimoto <kuninori.morimoto.gx@renesas.com>
Reviewed-by: Ranjani Sridharan <ranjani.sridharan@linux.intel.com>
Link: https://lore.kernel.org/r/87wo5e58j4.wl-kuninori.morimoto.gx@renesas.com
Signed-off-by: Mark Brown <broonie@kernel.org>
sound/soc/codecs/adav80x.c
sound/soc/codecs/arizona.c
sound/soc/codecs/cs4271.c
sound/soc/codecs/madera.c
sound/soc/codecs/max98090.c
sound/soc/codecs/tlv320aic23.c
sound/soc/codecs/tlv320dac33.c
sound/soc/codecs/uda1380.c
sound/soc/codecs/wl1273.c
sound/soc/codecs/wm8711.c
sound/soc/codecs/wm8753.c

index 7cea398ec392983d9c5ee497461a49fce28c92dd..c4b9722c3d8f5f92b5d705a94214ece37547232f 100644 (file)
@@ -725,7 +725,7 @@ static int adav80x_dai_startup(struct snd_pcm_substream *substream,
        struct snd_soc_component *component = dai->component;
        struct adav80x *adav80x = snd_soc_component_get_drvdata(component);
 
-       if (!snd_soc_component_is_active(component) || !adav80x->rate)
+       if (!snd_soc_component_active(component) || !adav80x->rate)
                return 0;
 
        return snd_pcm_hw_constraint_single(substream->runtime,
@@ -738,7 +738,7 @@ static void adav80x_dai_shutdown(struct snd_pcm_substream *substream,
        struct snd_soc_component *component = dai->component;
        struct adav80x *adav80x = snd_soc_component_get_drvdata(component);
 
-       if (!snd_soc_component_is_active(component))
+       if (!snd_soc_component_active(component))
                adav80x->rate = 0;
 }
 
index 70341b30f567b10efaf38f244174fc025717a656..9716c9624a8912e9c83197e34872a11f3029a0e3 100644 (file)
@@ -1926,7 +1926,7 @@ static int arizona_dai_set_sysclk(struct snd_soc_dai *dai,
        if (clk_id == dai_priv->clk)
                return 0;
 
-       if (dai->active) {
+       if (snd_soc_dai_active(dai)) {
                dev_err(component->dev, "Can't change clock on active DAI %d\n",
                        dai->id);
                return -EBUSY;
index 62f412d6f9f260723e3b849c4cc9c93ae975ee5a..d43762ae8f3da7cbf84735d01920a57bf144dc4e 100644 (file)
@@ -356,9 +356,9 @@ static int cs4271_hw_params(struct snd_pcm_substream *substream,
                 */
 
                if ((substream->stream == SNDRV_PCM_STREAM_PLAYBACK &&
-                    !dai->stream_active[SNDRV_PCM_STREAM_CAPTURE]) ||
+                    !snd_soc_dai_stream_active(dai, SNDRV_PCM_STREAM_CAPTURE)) ||
                    (substream->stream == SNDRV_PCM_STREAM_CAPTURE &&
-                    !dai->stream_active[SNDRV_PCM_STREAM_PLAYBACK])) {
+                    !snd_soc_dai_stream_active(dai, SNDRV_PCM_STREAM_PLAYBACK))) {
                        ret = regmap_update_bits(cs4271->regmap, CS4271_MODE2,
                                                 CS4271_MODE2_PDN,
                                                 CS4271_MODE2_PDN);
index a448d2a2918a95a3cca9e24576817033e05fe908..ec380b0b2d4e3c2f0d9583857c0bf4fabd2ff12f 100644 (file)
@@ -3279,7 +3279,7 @@ static int madera_dai_set_sysclk(struct snd_soc_dai *dai,
        if (is_sync == madera_is_syncclk(dai_priv->clk))
                return 0;
 
-       if (dai->active) {
+       if (snd_soc_dai_active(dai)) {
                dev_err(component->dev, "Can't change clock on active DAI %d\n",
                        dai->id);
                return -EBUSY;
index 032adc14562d24c54b4933c0c4818f0537ebb1f4..e2cc1ad8cb0ab92c598072a83b7a77616567a70d 100644 (file)
@@ -2039,7 +2039,7 @@ static int max98090_dai_trigger(struct snd_pcm_substream *substream, int cmd,
        case SNDRV_PCM_TRIGGER_START:
        case SNDRV_PCM_TRIGGER_RESUME:
        case SNDRV_PCM_TRIGGER_PAUSE_RELEASE:
-               if (!max98090->master && dai->active == 1)
+               if (!max98090->master && snd_soc_dai_active(dai) == 1)
                        queue_delayed_work(system_power_efficient_wq,
                                           &max98090->pll_det_enable_work,
                                           msecs_to_jiffies(10));
@@ -2047,7 +2047,7 @@ static int max98090_dai_trigger(struct snd_pcm_substream *substream, int cmd,
        case SNDRV_PCM_TRIGGER_STOP:
        case SNDRV_PCM_TRIGGER_SUSPEND:
        case SNDRV_PCM_TRIGGER_PAUSE_PUSH:
-               if (!max98090->master && dai->active == 1)
+               if (!max98090->master && snd_soc_dai_active(dai) == 1)
                        schedule_work(&max98090->pll_det_disable_work);
                break;
        default:
@@ -2109,7 +2109,7 @@ static void max98090_pll_work(struct max98090_priv *max98090)
        unsigned int pll;
        int i;
 
-       if (!snd_soc_component_is_active(component))
+       if (!snd_soc_component_active(component))
                return;
 
        dev_info_ratelimited(component->dev, "PLL unlocked\n");
index f8e2f4b74db3ddd1030ece920b2aa0db0c5f53c8..9868fb22323c5f393cac98aebac39d2eb8d0e86c 100644 (file)
@@ -394,7 +394,7 @@ static void tlv320aic23_shutdown(struct snd_pcm_substream *substream,
        struct aic23 *aic23 = snd_soc_component_get_drvdata(component);
 
        /* deactivate */
-       if (!snd_soc_component_is_active(component)) {
+       if (!snd_soc_component_active(component)) {
                udelay(50);
                snd_soc_component_write(component, TLV320AIC23_ACTIVE, 0x0);
        }
index 808654b10deba8ad588a8ee4dea7a73e8c72a233..d905e03aaec7b0fb59696309cc0bf000f6d68183 100644 (file)
@@ -449,7 +449,7 @@ static int dac33_set_fifo_mode(struct snd_kcontrol *kcontrol,
        if (dac33->fifo_mode == ucontrol->value.enumerated.item[0])
                return 0;
        /* Do not allow changes while stream is running*/
-       if (snd_soc_component_is_active(component))
+       if (snd_soc_component_active(component))
                return -EPERM;
 
        if (ucontrol->value.enumerated.item[0] >= DAC33_FIFO_LAST_MODE)
index 26b2ee428aee9859efe8bb0fe110994729612fe0..89f2bfeeb70e5757d1c53268a8de87fd3df7597c 100644 (file)
@@ -110,7 +110,7 @@ static int uda1380_write(struct snd_soc_component *component, unsigned int reg,
        /* the interpolator & decimator regs must only be written when the
         * codec DAI is active.
         */
-       if (!snd_soc_component_is_active(component) && (reg >= UDA1380_MVOL))
+       if (!snd_soc_component_active(component) && (reg >= UDA1380_MVOL))
                return 0;
        pr_debug("uda1380: hw write %x val %x\n", reg, value);
        if (i2c_master_send(uda1380->i2c, data, 3) == 3) {
index b30bfcd6a1254dd9dbacab5d7ddfbc55125557c6..c56b9329240f8e056838ddcad1716fc380333b14 100644 (file)
@@ -183,7 +183,7 @@ static int snd_wl1273_set_audio_route(struct snd_kcontrol *kcontrol,
                return 0;
 
        /* Do not allow changes while stream is running */
-       if (snd_soc_component_is_active(component))
+       if (snd_soc_component_active(component))
                return -EPERM;
 
        if (ucontrol->value.enumerated.item[0] >=  ARRAY_SIZE(wl1273_audio_route))
index 8036b18fdeb9aa03a399a6c5fff5e47445804e9c..5ad905dd78b727ee04e4f13bade85e775d28eddb 100644 (file)
@@ -198,7 +198,7 @@ static void wm8711_shutdown(struct snd_pcm_substream *substream,
        struct snd_soc_component *component = dai->component;
 
        /* deactivate */
-       if (!snd_soc_component_is_active(component)) {
+       if (!snd_soc_component_active(component)) {
                udelay(50);
                snd_soc_component_write(component, WM8711_ACTIVE, 0x0);
        }
index 95a12718f3af0034ab3b21667ca9aa6106176adf..8753c55c73fad6975aabdce6a8d17babce48313f 100644 (file)
@@ -241,7 +241,7 @@ static int wm8753_set_dai(struct snd_kcontrol *kcontrol,
        if (wm8753->dai_func == ucontrol->value.enumerated.item[0])
                return 0;
 
-       if (snd_soc_component_is_active(component))
+       if (snd_soc_component_active(component))
                return -EBUSY;
 
        ioctl = snd_soc_component_read32(component, WM8753_IOCTL);
@@ -1304,7 +1304,7 @@ static int wm8753_mute(struct snd_soc_dai *dai, int mute)
        /* the digital mute covers the HiFi and Voice DAC's on the WM8753.
         * make sure we check if they are not both active when we mute */
        if (mute && wm8753->dai_func == 1) {
-               if (!snd_soc_component_is_active(component))
+               if (!snd_soc_component_active(component))
                        snd_soc_component_write(component, WM8753_DAC, mute_reg | 0x8);
        } else {
                if (mute)