mbox series

[00/25] ASoC: add soc-component.c

Message ID 8736iwurtc.wl-kuninori.morimoto.gx@renesas.com (mailing list archive)
Headers show
Series ASoC: add soc-component.c | expand

Message

Kuninori Morimoto July 24, 2019, 1:50 a.m. UTC
Hi Mark

I want to add multi CPU DAI support to ALSA SoC.
But I noticed that we want to cleanup ALSA SoC before that.
These patches will do nothing from "technical" point of view,
but, will makes code readable.

These are focusing to "component". Actually, soc-io.c is also for component.
I'm thinking that we can merge soc-io.c into soc-component.c,
but do nothing by these patch-set.

Kuninori Morimoto (25):
  ASoC: add soc-component.c
  ASoC: soc-component: add snd_soc_component_get/put()
  ASoC: soc-component: add snd_soc_component_open()
  ASoC: soc-component: add snd_soc_component_close()
  ASoC: soc-component: add snd_soc_component_prepare()
  ASoC: soc-component: add snd_soc_component_hw_params()
  ASoC: soc-component: add snd_soc_component_hw_free()
  ASoC: soc-component: add snd_soc_component_trigger()
  ASoC: soc-component: add snd_soc_component_pointer()
  ASoC: soc-component: add snd_soc_component_ioctrl()
  ASoC: soc-component: add snd_soc_component_copy_user()
  ASoC: soc-component: add snd_soc_component_page()
  ASoC: soc-component: add snd_soc_component_mmap()
  ASoC: soc-component: add snd_soc_component_pcm_new()
  ASoC: soc-component: add snd_soc_component_pcm_free()
  ASoC: soc-component: add snd_soc_component_suspend()
  ASoC: soc-component: add snd_soc_component_resume()
  ASoC: soc-component: add snd_soc_component_is_suspended()
  ASoC: soc-component: add snd_soc_component_probe()
  ASoC: soc-component: add snd_soc_component_remove()
  ASoC: soc-component: add snd_soc_component_of_xlate_dai_id()
  ASoC: soc-component: add snd_soc_component_of_xlate_dai_name()
  ASoC: soc-component: move snd_soc_component_seq_notifier()
  ASoC: soc-component: move snd_soc_component_stream_event()
  ASoC: soc-component: move snd_soc_component_set_bias_level()

 include/sound/soc-component.h | 378 +++++++++++++++++++++++++++++++
 include/sound/soc.h           | 306 +-------------------------
 sound/soc/Makefile            |   2 +-
 sound/soc/soc-component.c     | 500 ++++++++++++++++++++++++++++++++++++++++++
 sound/soc/soc-core.c          | 126 ++---------
 sound/soc/soc-jack.c          |  18 --
 sound/soc/soc-pcm.c           |  98 +++------
 sound/soc/soc-utils.c         | 199 -----------------
 8 files changed, 931 insertions(+), 696 deletions(-)
 create mode 100644 include/sound/soc-component.h
 create mode 100644 sound/soc/soc-component.c