alsa-devel.alsa-project.org archive mirror
 help / color / mirror / Atom feed
* [alsa-devel] [PATCH 00/15] ASoC: soc-core cleanup step7
@ 2019-12-12  1:06 Kuninori Morimoto
  2019-12-12  1:07 ` [alsa-devel] [PATCH 01/15] ASoC: soc-core: support snd_soc_dai_link_component for codec_conf Kuninori Morimoto
                   ` (14 more replies)
  0 siblings, 15 replies; 18+ messages in thread
From: Kuninori Morimoto @ 2019-12-12  1:06 UTC (permalink / raw)
  To: Mark Brown; +Cc: Linux-ALSA


Hi Mark

ASoC has codec_conf, and we are using original
dev_name, of_node for it to finding codec.
But, we already have snd_soc_dai_link_component method.
We can reuse it for codec_conf, too.
This patches are for it.

Kuninori Morimoto (15):
  ASoC: soc-core: support snd_soc_dai_link_component for codec_conf
  ASoC: fsl: imx-audmix: use snd_soc_dai_link_component for codec_conf
  ASoC: intel: kbl_da7219_max98927: use snd_soc_dai_link_component for codec_conf
  ASoC: intel: kbl_rt5663_max98927: use snd_soc_dai_link_component for codec_conf
  ASoC: intel: kbl_rt5663_rt5514_max98927: use snd_soc_dai_link_component for codec_conf
  ASoC: intel: skl_nau88l25_ssm4567: use snd_soc_dai_link_component for codec_conf
  ASoC: mediatek: mt8173-rt5650-rt5514: use snd_soc_dai_link_component for codec_conf
  ASoC: mediatek: mt8173-rt5650-rt5676: use snd_soc_dai_link_component for codec_conf
  ASoC: mediatek: mt8183-da7219-max98357: use snd_soc_dai_link_component for codec_conf
  ASoC: samsung: bells: use snd_soc_dai_link_component for codec_conf
  ASoC: samsung: lowland: use snd_soc_dai_link_component for codec_conf
  ASoC: samsung: neo1973_wm8753: use snd_soc_dai_link_component for codec_conf
  ASoC: samsung: speyside: use snd_soc_dai_link_component for codec_conf
  ASoC: ti: rx51: use snd_soc_dai_link_component for codec_conf
  ASoC: soc-core: remove legacy style of codec_conf

 include/sound/soc.h                                 |  4 ++--
 sound/soc/fsl/imx-audmix.c                          |  2 +-
 sound/soc/intel/boards/kbl_da7219_max98927.c        |  8 ++++----
 sound/soc/intel/boards/kbl_rt5663_max98927.c        |  4 ++--
 sound/soc/intel/boards/kbl_rt5663_rt5514_max98927.c |  4 ++--
 sound/soc/intel/boards/skl_nau88l25_ssm4567.c       |  4 ++--
 sound/soc/mediatek/mt8173/mt8173-rt5650-rt5514.c    |  2 +-
 sound/soc/mediatek/mt8173/mt8173-rt5650-rt5676.c    |  2 +-
 sound/soc/mediatek/mt8183/mt8183-da7219-max98357.c  |  2 +-
 sound/soc/samsung/bells.c                           |  2 +-
 sound/soc/samsung/lowland.c                         |  2 +-
 sound/soc/samsung/neo1973_wm8753.c                  |  2 +-
 sound/soc/samsung/speyside.c                        |  2 +-
 sound/soc/soc-core.c                                | 12 +++++-------
 sound/soc/ti/rx51.c                                 | 12 ++++++------
 15 files changed, 31 insertions(+), 33 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] 18+ messages in thread

end of thread, other threads:[~2019-12-12  2:42 UTC | newest]

Thread overview: 18+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-12-12  1:06 [alsa-devel] [PATCH 00/15] ASoC: soc-core cleanup step7 Kuninori Morimoto
2019-12-12  1:07 ` [alsa-devel] [PATCH 01/15] ASoC: soc-core: support snd_soc_dai_link_component for codec_conf Kuninori Morimoto
2019-12-12  2:28   ` Pierre-Louis Bossart
2019-12-12  2:41     ` Kuninori Morimoto
2019-12-12  1:07 ` [alsa-devel] [PATCH 02/15] ASoC: fsl: imx-audmix: use " Kuninori Morimoto
2019-12-12  1:07 ` [alsa-devel] [PATCH 03/15] ASoC: intel: kbl_da7219_max98927: " Kuninori Morimoto
2019-12-12  1:07 ` [alsa-devel] [PATCH 04/15] ASoC: intel: kbl_rt5663_max98927: " Kuninori Morimoto
2019-12-12  1:07 ` [alsa-devel] [PATCH 05/15] ASoC: intel: kbl_rt5663_rt5514_max98927: " Kuninori Morimoto
2019-12-12  1:08 ` [alsa-devel] [PATCH 06/15] ASoC: intel: skl_nau88l25_ssm4567: " Kuninori Morimoto
2019-12-12  1:08 ` [alsa-devel] [PATCH 07/15] ASoC: mediatek: mt8173-rt5650-rt5514: " Kuninori Morimoto
2019-12-12  1:08 ` [alsa-devel] [PATCH 08/15] ASoC: mediatek: mt8173-rt5650-rt5676: " Kuninori Morimoto
2019-12-12  1:08 ` [alsa-devel] [PATCH 09/15] ASoC: mediatek: mt8183-da7219-max98357: " Kuninori Morimoto
2019-12-12  1:08 ` [alsa-devel] [PATCH 10/15] ASoC: samsung: bells: " Kuninori Morimoto
2019-12-12  1:08 ` [alsa-devel] [PATCH 11/15] ASoC: samsung: lowland: " Kuninori Morimoto
2019-12-12  1:08 ` [alsa-devel] [PATCH 12/15] ASoC: samsung: neo1973_wm8753: " Kuninori Morimoto
2019-12-12  1:08 ` [alsa-devel] [PATCH 13/15] ASoC: samsung: speyside: " Kuninori Morimoto
2019-12-12  1:08 ` [alsa-devel] [PATCH 14/15] ASoC: ti: rx51: " Kuninori Morimoto
2019-12-12  1:08 ` [alsa-devel] [PATCH 15/15] ASoC: soc-core: remove legacy style of codec_conf Kuninori Morimoto

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