OSDN Git Service

ASoC: intel: use snd_soc_xxx_active()
authorKuninori Morimoto <kuninori.morimoto.gx@renesas.com>
Fri, 15 May 2020 00:47:22 +0000 (09:47 +0900)
committerMark Brown <broonie@kernel.org>
Mon, 18 May 2020 15:15:09 +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/87tv0i58it.wl-kuninori.morimoto.gx@renesas.com
Signed-off-by: Mark Brown <broonie@kernel.org>
sound/soc/intel/atom/sst-mfld-platform-pcm.c

index 2e9222e..8817eaa 100644 (file)
@@ -392,7 +392,7 @@ static int sst_enable_ssp(struct snd_pcm_substream *substream,
 {
        int ret = 0;
 
-       if (!dai->active) {
+       if (!snd_soc_dai_active(dai)) {
                ret = sst_handle_vb_timer(dai, true);
                sst_fill_ssp_defaults(dai);
        }
@@ -405,7 +405,7 @@ static int sst_be_hw_params(struct snd_pcm_substream *substream,
 {
        int ret = 0;
 
-       if (dai->active == 1)
+       if (snd_soc_dai_active(dai) == 1)
                ret = send_ssp_cmd(dai, dai->name, 1);
        return ret;
 }
@@ -414,7 +414,7 @@ static int sst_set_format(struct snd_soc_dai *dai, unsigned int fmt)
 {
        int ret = 0;
 
-       if (!dai->active)
+       if (!snd_soc_dai_active(dai))
                return 0;
 
        ret = sst_fill_ssp_config(dai, fmt);
@@ -429,7 +429,7 @@ static int sst_platform_set_ssp_slot(struct snd_soc_dai *dai,
                        int slots, int slot_width) {
        int ret = 0;
 
-       if (!dai->active)
+       if (!snd_soc_dai_active(dai))
                return ret;
 
        ret = sst_fill_ssp_slot(dai, tx_mask, rx_mask, slots, slot_width);
@@ -442,7 +442,7 @@ static int sst_platform_set_ssp_slot(struct snd_soc_dai *dai,
 static void sst_disable_ssp(struct snd_pcm_substream *substream,
                        struct snd_soc_dai *dai)
 {
-       if (!dai->active) {
+       if (!snd_soc_dai_active(dai)) {
                send_ssp_cmd(dai, dai->name, 0);
                sst_handle_vb_timer(dai, false);
        }
@@ -743,7 +743,7 @@ static int sst_soc_prepare(struct device *dev)
        for_each_card_rtds(drv->soc_card, rtd) {
                struct snd_soc_dai *dai = asoc_rtd_to_cpu(rtd, 0);
 
-               if (dai->active) {
+               if (snd_soc_dai_active(dai)) {
                        send_ssp_cmd(dai, dai->name, 0);
                        sst_handle_vb_timer(dai, false);
                }
@@ -764,7 +764,7 @@ static void sst_soc_complete(struct device *dev)
        for_each_card_rtds(drv->soc_card, rtd) {
                struct snd_soc_dai *dai = asoc_rtd_to_cpu(rtd, 0);
 
-               if (dai->active) {
+               if (snd_soc_dai_active(dai)) {
                        sst_handle_vb_timer(dai, true);
                        send_ssp_cmd(dai, dai->name, 1);
                }