alsa-devel.alsa-project.org archive mirror
 help / color / mirror / Atom feed
* [alsa-devel] [PATCH v2 00/15][resend] ASoC: soc-core cleanup step6
@ 2019-12-10  0:30 Kuninori Morimoto
  2019-12-10  0:33 ` [alsa-devel] [PATCH 01/15][resend] ASoC: soc-core: remove dai_link_list Kuninori Morimoto
                   ` (14 more replies)
  0 siblings, 15 replies; 31+ messages in thread
From: Kuninori Morimoto @ 2019-12-10  0:30 UTC (permalink / raw)
  To: Mark Brown; +Cc: Linux-ALSA, Pierre-Louis Bossart


Hi Mark

These are resend of v2 of soc-core cleanup step6.
These doesn't add new features.

Kuninori Morimoto (15):
      ASoC: soc-core: remove dai_link_list
      ASoC: soc-core: remove snd_soc_disconnect_sync()
      ASoC: soc-core: remove snd_soc_get_dai_substream()
      ASoC: soc-core: move snd_soc_get_pcm_runtime()
      ASoC: soc-core: find rtd via dai_link pointer at snd_soc_get_pcm_runtime()
      ASoC: soc-core: move snd_soc_find_dai_link()
      ASoC: soc-core: rename snd_soc_add_dai_link() to snd_soc_add_pcm_runtime()
      ASoC: soc-core: rename snd_soc_remove_dai_link() to snd_soc_remove_pcm_runtime()
      ASoC: soc-core: move soc_link_dai_pcm_new()
      ASoC: soc-core: rename soc_link_dai_pcm_new() to soc_dai_pcm_new()
      ASoC: soc-core: move soc_link_init()
      ASoC: soc-core: add missing return value check for soc_link_init()
      ASoC: soc-core: rename soc_link_init() to soc_init_pcm_runtime()
      ASoC: soc-core: soc_set_name_prefix(): tidyup loop condition
      ASoC: soc-core: soc_set_name_prefix(): get component device_node at out of loop

 include/sound/soc.h            |  22 +--
 sound/soc/fsl/fsl-asoc-card.c  |   2 +-
 sound/soc/pxa/mioa701_wm9713.c |   2 +-
 sound/soc/samsung/bells.c      |  12 +-
 sound/soc/samsung/littlemill.c |  10 +-
 sound/soc/samsung/snow.c       |   2 +-
 sound/soc/samsung/speyside.c   |   4 +-
 sound/soc/samsung/tm2_wm5110.c |   6 +-
 sound/soc/samsung/tobermory.c  |   6 +-
 sound/soc/sh/rcar/core.c       |   2 -
 sound/soc/soc-core.c           | 339 ++++++++++++++++-------------------------
 sound/soc/soc-topology.c       |  47 +++++-
 sound/soc/tegra/tegra_wm8903.c |   2 +-
 13 files changed, 204 insertions(+), 252 deletions(-)

-- 
2.7.4

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

^ permalink raw reply	[flat|nested] 31+ messages in thread

end of thread, other threads:[~2019-12-10 13:33 UTC | newest]

Thread overview: 31+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
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   ` [alsa-devel] Applied "ASoC: soc-core: rename snd_soc_remove_dai_link() to snd_soc_remove_pcm_runtime()" to the asoc tree Mark Brown
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

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).