alsa-devel.alsa-project.org archive mirror
 help / color / mirror / Atom feed
From: Mark Brown <broonie@kernel.org>
To: Kuninori Morimoto <kuninori.morimoto.gx@renesas.com>
Cc: Linux-ALSA <alsa-devel@alsa-project.org>,
	Mark Brown <broonie@kernel.org>,
	Pierre-Louis Bossart <pierre-louis.bossart@linux.intel.com>
Subject: [alsa-devel] Applied "ASoC: soc-core: rename snd_soc_remove_dai_link() to snd_soc_remove_pcm_runtime()" to the asoc tree
Date: Tue, 10 Dec 2019 13:22:49 +0000	[thread overview]
Message-ID: <applied-875zipyq5s.wl-kuninori.morimoto.gx@renesas.com> (raw)
In-Reply-To: <875zipyq5s.wl-kuninori.morimoto.gx@renesas.com>

The patch

   ASoC: soc-core: rename snd_soc_remove_dai_link() to snd_soc_remove_pcm_runtime()

has been applied to the asoc tree at

   https://git.kernel.org/pub/scm/linux/kernel/git/broonie/sound.git for-5.6

All being well this means that it will be integrated into the linux-next
tree (usually sometime in the next 24 hours) and sent to Linus during
the next merge window (or sooner if it is a bug fix), however if
problems are discovered then the patch may be dropped or reverted.  

You may get further e-mails resulting from automated or manual testing
and review of the tree, please engage with people reporting problems and
send followup patches addressing any issues that are reported if needed.

If any updates are required or you are submitting further changes they
should be sent as incremental updates against current git, existing
patches will not be replaced.

Please add any relevant lists and maintainers to the CCs when replying
to this mail.

Thanks,
Mark

From 50cd9b5317d5593d0a33f4227f56ddcc1bf66604 Mon Sep 17 00:00:00 2001
From: Kuninori Morimoto <kuninori.morimoto.gx@renesas.com>
Date: Tue, 10 Dec 2019 09:34:23 +0900
Subject: [PATCH] ASoC: soc-core: rename snd_soc_remove_dai_link() to
 snd_soc_remove_pcm_runtime()

Now soc-core and soc-topology is using snd_soc_remove_dai_link().
It removes pcm_runtime (= rtd) and disconnect it from card.
The purpose is removing pcm_runtime, not dai_link.
This patch renames function name.

Signed-off-by: Kuninori Morimoto <kuninori.morimoto.gx@renesas.com>
Reviewed-by: Ranjani Sridharan <ranjani.sridharan@linux.intel.com>
Reviewed-by: Pierre-Louis Bossart <pierre-louis.bossart@linux.intel.com>
Link: https://lore.kernel.org/r/875zipyq5s.wl-kuninori.morimoto.gx@renesas.com
Signed-off-by: Mark Brown <broonie@kernel.org>
---
 include/sound/soc.h      |  4 ++--
 sound/soc/soc-core.c     | 29 +++++++++++------------------
 sound/soc/soc-topology.c |  4 +++-
 3 files changed, 16 insertions(+), 21 deletions(-)

diff --git a/include/sound/soc.h b/include/sound/soc.h
index b223b2d39950..3923178ad050 100644
--- a/include/sound/soc.h
+++ b/include/sound/soc.h
@@ -1325,8 +1325,8 @@ void snd_soc_of_put_dai_link_codecs(struct snd_soc_dai_link *dai_link);
 
 int snd_soc_add_pcm_runtime(struct snd_soc_card *card,
 			    struct snd_soc_dai_link *dai_link);
-void snd_soc_remove_dai_link(struct snd_soc_card *card,
-			     struct snd_soc_dai_link *dai_link);
+void snd_soc_remove_pcm_runtime(struct snd_soc_card *card,
+				struct snd_soc_pcm_runtime *rtd);
 
 struct snd_soc_dai *snd_soc_register_dai(struct snd_soc_component *component,
 					 struct snd_soc_dai_driver *dai_drv,
diff --git a/sound/soc/soc-core.c b/sound/soc/soc-core.c
index af9da991d99e..f82d521306b7 100644
--- a/sound/soc/soc-core.c
+++ b/sound/soc/soc-core.c
@@ -998,33 +998,26 @@ static int soc_dai_link_sanity_check(struct snd_soc_card *card,
 }
 
 /**
- * snd_soc_remove_dai_link - Remove a DAI link from the list
- * @card: The ASoC card that owns the link
- * @dai_link: The DAI link to remove
+ * snd_soc_remove_pcm_runtime - Remove a pcm_runtime from card
+ * @card: The ASoC card to which the pcm_runtime has
+ * @rtd: The pcm_runtime to remove
  *
- * This function removes a DAI link from the ASoC card's link list.
- *
- * For DAI links previously added by topology, topology should
- * remove them by using the dobj embedded in the link.
+ * This function removes a pcm_runtime from the ASoC card.
  */
-void snd_soc_remove_dai_link(struct snd_soc_card *card,
-			     struct snd_soc_dai_link *dai_link)
+void snd_soc_remove_pcm_runtime(struct snd_soc_card *card,
+				struct snd_soc_pcm_runtime *rtd)
 {
-	struct snd_soc_pcm_runtime *rtd;
-
 	lockdep_assert_held(&client_mutex);
 
 	/*
 	 * Notify the machine driver for extra destruction
 	 */
 	if (card->remove_dai_link)
-		card->remove_dai_link(card, dai_link);
+		card->remove_dai_link(card, rtd->dai_link);
 
-	rtd = snd_soc_get_pcm_runtime(card, dai_link);
-	if (rtd)
-		soc_free_pcm_runtime(rtd);
+	soc_free_pcm_runtime(rtd);
 }
-EXPORT_SYMBOL_GPL(snd_soc_remove_dai_link);
+EXPORT_SYMBOL_GPL(snd_soc_remove_pcm_runtime);
 
 /**
  * snd_soc_add_pcm_runtime - Add a pcm_runtime dynamically via dai_link
@@ -1104,7 +1097,7 @@ int snd_soc_add_pcm_runtime(struct snd_soc_card *card,
 	return 0;
 
 _err_defer:
-	soc_free_pcm_runtime(rtd);
+	snd_soc_remove_pcm_runtime(card, rtd);
 	return -EPROBE_DEFER;
 }
 EXPORT_SYMBOL_GPL(snd_soc_add_pcm_runtime);
@@ -1871,7 +1864,7 @@ static void soc_cleanup_card_resources(struct snd_soc_card *card,
 	soc_remove_link_components(card);
 
 	for_each_card_rtds_safe(card, rtd, n)
-		snd_soc_remove_dai_link(card, rtd->dai_link);
+		snd_soc_remove_pcm_runtime(card, rtd);
 
 	/* remove auxiliary devices */
 	soc_remove_aux_devices(card);
diff --git a/sound/soc/soc-topology.c b/sound/soc/soc-topology.c
index de427881a2ae..e9b660f3116f 100644
--- a/sound/soc/soc-topology.c
+++ b/sound/soc/soc-topology.c
@@ -553,7 +553,9 @@ static void remove_link(struct snd_soc_component *comp,
 	kfree(link->cpus->dai_name);
 
 	list_del(&dobj->list);
-	snd_soc_remove_dai_link(comp->card, link);
+
+	snd_soc_remove_pcm_runtime(comp->card,
+			snd_soc_get_pcm_runtime(comp->card, link));
 	kfree(link);
 }
 
-- 
2.20.1

_______________________________________________
Alsa-devel mailing list
Alsa-devel@alsa-project.org
https://mailman.alsa-project.org/mailman/listinfo/alsa-devel

  reply	other threads:[~2019-12-10 13:29 UTC|newest]

Thread overview: 31+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2019-12-10  0:30 [alsa-devel] [PATCH v2 00/15][resend] ASoC: soc-core cleanup step6 Kuninori Morimoto
2019-12-10  0:33 ` [alsa-devel] [PATCH 01/15][resend] ASoC: soc-core: remove dai_link_list Kuninori Morimoto
2019-12-10 13:23   ` [alsa-devel] Applied "ASoC: soc-core: remove dai_link_list" to the asoc tree Mark Brown
2019-12-10  0:33 ` [alsa-devel] [PATCH 02/15][resend] ASoC: soc-core: remove snd_soc_disconnect_sync() Kuninori Morimoto
2019-12-10 13:23   ` [alsa-devel] Applied "ASoC: soc-core: remove snd_soc_disconnect_sync()" to the asoc tree Mark Brown
2019-12-10  0:33 ` [alsa-devel] [PATCH 03/15][resend] ASoC: soc-core: remove snd_soc_get_dai_substream() Kuninori Morimoto
2019-12-10 13:23   ` [alsa-devel] Applied "ASoC: soc-core: remove snd_soc_get_dai_substream()" to the asoc tree Mark Brown
2019-12-10  0:34 ` [alsa-devel] [PATCH 04/15][resend] ASoC: soc-core: move snd_soc_get_pcm_runtime() Kuninori Morimoto
2019-12-10 13:23   ` [alsa-devel] Applied "ASoC: soc-core: move snd_soc_get_pcm_runtime()" to the asoc tree Mark Brown
2019-12-10  0:34 ` [alsa-devel] [PATCH 05/15][resend] ASoC: soc-core: find rtd via dai_link pointer at snd_soc_get_pcm_runtime() Kuninori Morimoto
2019-12-10 13:22   ` [alsa-devel] Applied "ASoC: soc-core: find rtd via dai_link pointer at snd_soc_get_pcm_runtime()" to the asoc tree Mark Brown
2019-12-10  0:34 ` [alsa-devel] [PATCH 06/15][resend] ASoC: soc-core: move snd_soc_find_dai_link() Kuninori Morimoto
2019-12-10 13:22   ` [alsa-devel] Applied "ASoC: soc-core: move snd_soc_find_dai_link()" to the asoc tree Mark Brown
2019-12-10  0:34 ` [alsa-devel] [PATCH 07/15][resend] ASoC: soc-core: rename snd_soc_add_dai_link() to snd_soc_add_pcm_runtime() Kuninori Morimoto
2019-12-10 13:22   ` [alsa-devel] Applied "ASoC: soc-core: rename snd_soc_add_dai_link() to snd_soc_add_pcm_runtime()" to the asoc tree Mark Brown
2019-12-10  0:34 ` [alsa-devel] [PATCH 08/15][resend] ASoC: soc-core: rename snd_soc_remove_dai_link() to snd_soc_remove_pcm_runtime() Kuninori Morimoto
2019-12-10 13:22   ` Mark Brown [this message]
2019-12-10  0:34 ` [alsa-devel] [PATCH 09/15][resend] ASoC: soc-core: move soc_link_dai_pcm_new() Kuninori Morimoto
2019-12-10 13:22   ` [alsa-devel] Applied "ASoC: soc-core: move soc_link_dai_pcm_new()" to the asoc tree Mark Brown
2019-12-10  0:34 ` [alsa-devel] [PATCH 10/15][resend] ASoC: soc-core: rename soc_link_dai_pcm_new() to soc_dai_pcm_new() Kuninori Morimoto
2019-12-10 13:22   ` [alsa-devel] Applied "ASoC: soc-core: rename soc_link_dai_pcm_new() to soc_dai_pcm_new()" to the asoc tree Mark Brown
2019-12-10  0:34 ` [alsa-devel] [PATCH 11/15][resend] ASoC: soc-core: move soc_link_init() Kuninori Morimoto
2019-12-10 13:22   ` [alsa-devel] Applied "ASoC: soc-core: move soc_link_init()" to the asoc tree Mark Brown
2019-12-10  0:34 ` [alsa-devel] [PATCH 12/15][resend] ASoC: soc-core: add missing return value check for soc_link_init() Kuninori Morimoto
2019-12-10 13:22   ` [alsa-devel] Applied "ASoC: soc-core: add missing return value check for soc_link_init()" to the asoc tree Mark Brown
2019-12-10  0:34 ` [alsa-devel] [PATCH 13/15][resend] ASoC: soc-core: rename soc_link_init() to soc_init_pcm_runtime() Kuninori Morimoto
2019-12-10 13:22   ` [alsa-devel] Applied "ASoC: soc-core: rename soc_link_init() to soc_init_pcm_runtime()" to the asoc tree Mark Brown
2019-12-10  0:34 ` [alsa-devel] [PATCH 14/15][resend] ASoC: soc-core: soc_set_name_prefix(): tidyup loop condition Kuninori Morimoto
2019-12-10 13:22   ` [alsa-devel] Applied "ASoC: soc-core: soc_set_name_prefix(): tidyup loop condition" to the asoc tree Mark Brown
2019-12-10  0:34 ` [alsa-devel] [PATCH 15/15][resend] ASoC: soc-core: soc_set_name_prefix(): get component device_node at out of loop Kuninori Morimoto
2019-12-10 13:22   ` [alsa-devel] Applied "ASoC: soc-core: soc_set_name_prefix(): get component device_node at out of loop" to the asoc tree Mark Brown

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=applied-875zipyq5s.wl-kuninori.morimoto.gx@renesas.com \
    --to=broonie@kernel.org \
    --cc=alsa-devel@alsa-project.org \
    --cc=kuninori.morimoto.gx@renesas.com \
    --cc=pierre-louis.bossart@linux.intel.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).