All of lore.kernel.org
 help / color / mirror / Atom feed
From: Kuninori Morimoto <kuninori.morimoto.gx@renesas.com>
To: Mark Brown <broonie@kernel.org>
Cc: Linux-ALSA <alsa-devel@alsa-project.org>
Subject: [PATCH 145/145] ASoC: soc-core: remove legacy style dai_link
Date: 22 May 2019 12:51:40 +0900	[thread overview]
Message-ID: <87zhnfgnxd.wl-kuninori.morimoto.gx@renesas.com> (raw)
In-Reply-To: <87sgt7p3zo.wl-kuninori.morimoto.gx@renesas.com>


From: Kuninori Morimoto <kuninori.morimoto.gx@renesas.com>

All drivers switched to modern style dai_link
(= struct snd_soc_dai_link_component).
Let's remove legacy style dai_link.

Signed-off-by: Kuninori Morimoto <kuninori.morimoto.gx@renesas.com>
---
 include/sound/soc.h  |  65 ++------------------
 sound/soc/soc-core.c | 165 +++------------------------------------------------
 2 files changed, 12 insertions(+), 218 deletions(-)

diff --git a/include/sound/soc.h b/include/sound/soc.h
index 0fa79b8..055e6d0 100644
--- a/include/sound/soc.h
+++ b/include/sound/soc.h
@@ -901,77 +901,33 @@ struct snd_soc_dai_link {
 	const char *stream_name;		/* Stream name */
 
 	/*
-	 *	cpu_name
-	 *	cpu_of_node
-	 *	cpu_dai_name
-	 *
-	 * These are legacy style, and will be replaced to
-	 * modern style (= snd_soc_dai_link_component) in the future,
-	 * but, not yet supported so far.
-	 * If modern style was supported for CPU, all driver will switch
-	 * to use it, and, legacy style code will be removed from ALSA SoC.
-	 */
-	/*
 	 * You MAY specify the link's CPU-side device, either by device name,
 	 * or by DT/OF node, but not both. If this information is omitted,
 	 * the CPU-side DAI is matched using .cpu_dai_name only, which hence
 	 * must be globally unique. These fields are currently typically used
 	 * only for codec to codec links, or systems using device tree.
 	 */
-	const char *cpu_name;
-	struct device_node *cpu_of_node;
 	/*
 	 * You MAY specify the DAI name of the CPU DAI. If this information is
 	 * omitted, the CPU-side DAI is matched using .cpu_name/.cpu_of_node
 	 * only, which only works well when that device exposes a single DAI.
 	 */
-	const char *cpu_dai_name;
-
 	struct snd_soc_dai_link_component *cpus;
 	unsigned int num_cpus;
 
 	/*
-	 *	codec_name
-	 *	codec_of_node
-	 *	codec_dai_name
-	 *
-	 * These are legacy style, it will be converted to modern style
-	 * (= snd_soc_dai_link_component) automatically in soc-core
-	 * if driver is using legacy style.
-	 * Driver shouldn't use both legacy and modern style in the same time.
-	 * If modern style was supported for CPU, all driver will switch
-	 * to use it, and, legacy style code will be removed from ALSA SoC.
-	 */
-	/*
 	 * You MUST specify the link's codec, either by device name, or by
 	 * DT/OF node, but not both.
 	 */
-	const char *codec_name;
-	struct device_node *codec_of_node;
 	/* You MUST specify the DAI name within the codec */
-	const char *codec_dai_name;
-
 	struct snd_soc_dai_link_component *codecs;
 	unsigned int num_codecs;
 
 	/*
-	 *	platform_name
-	 *	platform_of_node
-	 *
-	 * These are legacy style, it will be converted to modern style
-	 * (= snd_soc_dai_link_component) automatically in soc-core
-	 * if driver is using legacy style.
-	 * Driver shouldn't use both legacy and modern style in the same time.
-	 * If modern style was supported for CPU, all driver will switch
-	 * to use it, and, legacy style code will be removed from ALSA SoC.
-	 */
-	/*
 	 * You MAY specify the link's platform/PCM/DMA driver, either by
 	 * device name, or by DT/OF node, but not both. Some forms of link
 	 * do not need a platform.
 	 */
-	const char *platform_name;
-	struct device_node *platform_of_node;
 	struct snd_soc_dai_link_component *platforms;
 	unsigned int num_platforms;
 
@@ -1033,13 +989,6 @@ struct snd_soc_dai_link {
 	/* Do not create a PCM for this DAI link (Backend link) */
 	unsigned int ignore:1;
 
-	/*
-	 * This driver uses legacy platform naming. Set by the core, machine
-	 * drivers should not modify this value.
-	 */
-	unsigned int legacy_platform:1;
-	unsigned int legacy_cpu:1;
-
 	struct list_head list; /* DAI link list of the soc card */
 	struct snd_soc_dobj dobj; /* For topology */
 };
@@ -1699,15 +1648,11 @@ int snd_soc_fixup_dai_links_platform_name(struct snd_soc_card *card,
 		if (!name)
 			return -ENOMEM;
 
-		if (dai_link->platforms)
-			/* only single platform is supported for now */
-			dai_link->platforms->name = name;
-		else
-			/*
-			 * legacy mode, this case will be removed when all
-			 * derivers are switched to modern style dai_link.
-			 */
-			dai_link->platform_name = name;
+		if (!dai_link->platforms)
+			return -EINVAL;
+
+		/* only single platform is supported for now */
+		dai_link->platforms->name = name;
 	}
 
 	return 0;
diff --git a/sound/soc/soc-core.c b/sound/soc/soc-core.c
index ab974bc..47fb304 100644
--- a/sound/soc/soc-core.c
+++ b/sound/soc/soc-core.c
@@ -1047,167 +1047,18 @@ static void soc_remove_dai_links(struct snd_soc_card *card)
 	}
 }
 
-static int snd_soc_init_cpu(struct snd_soc_card *card,
-			    struct snd_soc_dai_link *dai_link)
-{
-	struct snd_soc_dai_link_component *cpu = dai_link->cpus;
-
-	/*
-	 * REMOVE ME
-	 *
-	 * This is glue code for Legacy vs Modern dai_link.
-	 * This function will be removed if all derivers are switched to
-	 * modern style dai_link.
-	 * Driver shouldn't use both legacy and modern style in the same time.
-	 * see
-	 *	soc.h :: struct snd_soc_dai_link
-	 */
-	/* convert Legacy platform link */
-	if (!cpu) {
-		cpu = devm_kzalloc(card->dev,
-				   sizeof(struct snd_soc_dai_link_component),
-				   GFP_KERNEL);
-		if (!cpu)
-			return -ENOMEM;
-
-		dai_link->cpus		= cpu;
-		dai_link->num_cpus	= 1;
-		dai_link->legacy_cpu	= 1;
-
-		cpu->name	= dai_link->cpu_name;
-		cpu->of_node	= dai_link->cpu_of_node;
-		cpu->dai_name	= dai_link->cpu_dai_name;
-	}
-
-	if (!dai_link->cpus) {
-		dev_err(card->dev, "ASoC: DAI link has no CPUs\n");
-		return -EINVAL;
-	}
-
-	return 0;
-}
-
-static int snd_soc_init_platform(struct snd_soc_card *card,
-				 struct snd_soc_dai_link *dai_link)
-{
-	struct snd_soc_dai_link_component *platform = dai_link->platforms;
-
-	/*
-	 * REMOVE ME
-	 *
-	 * This is glue code for Legacy vs Modern dai_link.
-	 * This function will be removed if all derivers are switched to
-	 * modern style dai_link.
-	 * Driver shouldn't use both legacy and modern style in the same time.
-	 * see
-	 *	soc.h :: struct snd_soc_dai_link
-	 */
-	/* convert Legacy platform link */
-	if (!platform) {
-		platform = devm_kzalloc(card->dev,
-				sizeof(struct snd_soc_dai_link_component),
-				GFP_KERNEL);
-		if (!platform)
-			return -ENOMEM;
-
-		dai_link->platforms	  = platform;
-		dai_link->num_platforms	  = 1;
-		dai_link->legacy_platform = 1;
-		platform->name		  = dai_link->platform_name;
-		platform->of_node	  = dai_link->platform_of_node;
-		platform->dai_name	  = NULL;
-	}
-
-	/* if there's no platform we match on the empty platform */
-	if (!platform->name &&
-	    !platform->of_node)
-		platform->name = "snd-soc-dummy";
-
-	return 0;
-}
-
-static void soc_cleanup_legacy(struct snd_soc_card *card)
-{
-	struct snd_soc_dai_link *link;
-	int i;
-	/*
-	 * FIXME
-	 *
-	 * this function should be removed with snd_soc_init_platform
-	 */
-
-	for_each_card_prelinks(card, i, link) {
-		if (link->legacy_platform) {
-			link->legacy_platform = 0;
-			link->platforms       = NULL;
-		}
-		if (link->legacy_cpu) {
-			link->legacy_cpu = 0;
-			link->cpus = NULL;
-		}
-	}
-}
-
-static int snd_soc_init_multicodec(struct snd_soc_card *card,
-				   struct snd_soc_dai_link *dai_link)
-{
-	/*
-	 * REMOVE ME
-	 *
-	 * This is glue code for Legacy vs Modern dai_link.
-	 * This function will be removed if all derivers are switched to
-	 * modern style dai_link.
-	 * Driver shouldn't use both legacy and modern style in the same time.
-	 * see
-	 *	soc.h :: struct snd_soc_dai_link
-	 */
-
-	/* Legacy codec/codec_dai link is a single entry in multicodec */
-	if (dai_link->codec_name || dai_link->codec_of_node ||
-	    dai_link->codec_dai_name) {
-		dai_link->num_codecs = 1;
-
-		dai_link->codecs = devm_kzalloc(card->dev,
-				sizeof(struct snd_soc_dai_link_component),
-				GFP_KERNEL);
-		if (!dai_link->codecs)
-			return -ENOMEM;
-
-		dai_link->codecs[0].name = dai_link->codec_name;
-		dai_link->codecs[0].of_node = dai_link->codec_of_node;
-		dai_link->codecs[0].dai_name = dai_link->codec_dai_name;
-	}
-
-	if (!dai_link->codecs) {
-		dev_err(card->dev, "ASoC: DAI link has no CODECs\n");
-		return -EINVAL;
-	}
-
-	return 0;
-}
+static struct snd_soc_dai_link_component dummy_link = COMP_DUMMY();
 
 static int soc_init_dai_link(struct snd_soc_card *card,
 			     struct snd_soc_dai_link *link)
 {
-	int i, ret;
+	int i;
 	struct snd_soc_dai_link_component *codec;
 
-	ret = snd_soc_init_cpu(card, link);
-	if (ret) {
-		dev_err(card->dev, "ASoC: failed to init cpu\n");
-		return ret;
-	}
-
-	ret = snd_soc_init_platform(card, link);
-	if (ret) {
-		dev_err(card->dev, "ASoC: failed to init multiplatform\n");
-		return ret;
-	}
-
-	ret = snd_soc_init_multicodec(card, link);
-	if (ret) {
-		dev_err(card->dev, "ASoC: failed to init multicodec\n");
-		return ret;
+	/* default Platform */
+	if (!link->platforms || !link->num_platforms) {
+		link->platforms = &dummy_link;
+		link->num_platforms = 1;
 	}
 
 	for_each_link_codecs(link, i, codec) {
@@ -2054,7 +1905,7 @@ static void soc_check_tplg_fes(struct snd_soc_card *card)
 				 card->dai_link[i].name);
 
 			/* override platform component */
-			if (snd_soc_init_platform(card, dai_link) < 0) {
+			if (!dai_link->platforms) {
 				dev_err(card->dev, "init platform error");
 				continue;
 			}
@@ -2103,7 +1954,6 @@ static int soc_cleanup_card_resources(struct snd_soc_card *card)
 	/* remove and free each DAI */
 	soc_remove_dai_links(card);
 	soc_remove_pcm_runtimes(card);
-	soc_cleanup_legacy(card);
 
 	/* remove auxiliary devices */
 	soc_remove_aux_devices(card);
@@ -2860,7 +2710,6 @@ int snd_soc_register_card(struct snd_soc_card *card)
 
 		ret = soc_init_dai_link(card, link);
 		if (ret) {
-			soc_cleanup_legacy(card);
 			dev_err(card->dev, "ASoC: failed to init link %s\n",
 				link->name);
 			mutex_unlock(&client_mutex);
-- 
2.7.4

  parent reply	other threads:[~2019-05-22  3:51 UTC|newest]

Thread overview: 150+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2019-05-22  3:37 [PATCH 000/145] ASoC: modern dai_link style support Kuninori Morimoto
2019-05-22  3:38 ` [PATCH 001/145] ASoC: soc-core: use snd_soc_dai_link_component for CPU Kuninori Morimoto
2019-05-22  3:38 ` [PATCH 002/145] ASoC: simple-card: support snd_soc_dai_link_component style for cpu Kuninori Morimoto
2019-05-22  3:38 ` [PATCH 003/145] ASoC: soc.h: add sound dai_link connection macro Kuninori Morimoto
2019-05-22  3:38 ` [PATCH 004/145] ASoC: mediatek: mt6797-mt6351: use modern dai_link style Kuninori Morimoto
2019-05-22  3:38 ` [PATCH 005/145] ASoC: mediatek: mt2701-wm8960: " Kuninori Morimoto
2019-05-22  3:38 ` [PATCH 006/145] ASoC: mediatek: mt2701-cs42448: " Kuninori Morimoto
2019-05-22  3:38 ` [PATCH 007/145] ASoC: mediatek: mt8173-max98090: " Kuninori Morimoto
2019-05-22  3:39 ` [PATCH 008/145] ASoC: mediatek: mt8173-rt5650: " Kuninori Morimoto
2019-05-22  3:39 ` [PATCH 009/145] ASoC: mediatek: mt8173-rt5650-rt5676: " Kuninori Morimoto
2019-05-22  3:39 ` [PATCH 010/145] ASoC: mediatek: mt8173-rt5650-rt5514: " Kuninori Morimoto
2019-05-22  3:39 ` [PATCH 011/145] ASoC: mediatek: mt8183-da7219-max98357: " Kuninori Morimoto
2019-05-22  3:39 ` [PATCH 012/145] ASoC: mediatek: mt8183-mt6358-ts3a227-max98357: " Kuninori Morimoto
2019-05-22  3:39 ` [PATCH 013/145] ASoC: samsung: bells: " Kuninori Morimoto
2019-05-22  3:39 ` [PATCH 014/145] ASoC: samsung: smdk_wm8580: " Kuninori Morimoto
2019-05-22  3:39 ` [PATCH 015/145] ASoC: samsung: smdk_wm8994: " Kuninori Morimoto
2019-05-22  3:39 ` [PATCH 016/145] ASoC: samsung: smdk_wm8994pcm: " Kuninori Morimoto
2019-05-22  3:40 ` [PATCH 017/145] ASoC: samsung: smdk_spdif: " Kuninori Morimoto
2019-05-22  3:40 ` [PATCH 018/145] ASoC: samsung: h1940_uda1380: " Kuninori Morimoto
2019-05-22  3:40 ` [PATCH 019/145] ASoC: samsung: arndale_rt5631: " Kuninori Morimoto
2019-05-22  3:40 ` [PATCH 020/145] ASoC: samsung: tobermory: " Kuninori Morimoto
2019-05-22  3:40 ` [PATCH 021/145] ASoC: samsung: tm2_wm5110: " Kuninori Morimoto
2019-05-22  3:40 ` [PATCH 022/145] ASoC: samsung: speyside: " Kuninori Morimoto
2019-05-22  3:40 ` [PATCH 023/145] ASoC: samsung: snow: " Kuninori Morimoto
2019-05-22  3:40 ` [PATCH 024/145] ASoC: samsung: smartq_wm8987: " Kuninori Morimoto
2019-05-22  3:40 ` [PATCH 025/145] ASoC: samsung: s3c24xx_uda134x: " Kuninori Morimoto
2019-05-22  3:41 ` [PATCH 026/145] ASoC: samsung: s3c24xx_simtec_tlv320aic23: " Kuninori Morimoto
2019-05-22  3:41 ` [PATCH 027/145] ASoC: samsung: s3c24xx_simtec_hermes: " Kuninori Morimoto
2019-05-22  3:41 ` [PATCH 028/145] ASoC: samsung: rx1950_uda1380: " Kuninori Morimoto
2019-05-22  3:41 ` [PATCH 029/145] ASoC: samsung: odroid: " Kuninori Morimoto
2019-05-22  3:41 ` [PATCH 030/145] ASoC: samsung: neo1973_wm8753: " Kuninori Morimoto
2019-05-22  3:41 ` [PATCH 031/145] ASoC: samsung: lowland: " Kuninori Morimoto
2019-05-22  3:41 ` [PATCH 032/145] ASoC: samsung: littlemill: " Kuninori Morimoto
2019-05-22  3:41 ` [PATCH 033/145] ASoC: samsung: jive_wm8750: " Kuninori Morimoto
2019-05-22  3:41 ` [PATCH 034/145] ASoC: pxa: brownstone: " Kuninori Morimoto
2019-05-22  3:41 ` [PATCH 035/145] ASoC: pxa: corgi: " Kuninori Morimoto
2019-05-22  3:41 ` [PATCH 036/145] ASoC: pxa: e740_wm9705: " Kuninori Morimoto
2019-05-22  3:42 ` [PATCH 037/145] ASoC: pxa: e750_wm9705: " Kuninori Morimoto
2019-05-22  3:42 ` [PATCH 038/145] ASoC: pxa: e800_wm9712: " Kuninori Morimoto
2019-05-22  3:42 ` [PATCH 039/145] ASoC: pxa: em-x270: " Kuninori Morimoto
2019-05-22  3:42 ` [PATCH 040/145] ASoC: pxa: hx4700: " Kuninori Morimoto
2019-05-22  3:42 ` [PATCH 041/145] ASoC: pxa: imote2: " Kuninori Morimoto
2019-05-22  3:42 ` [PATCH 042/145] ASoC: pxa: magician: " Kuninori Morimoto
2019-05-22  3:42 ` [PATCH 043/145] ASoC: pxa: mioa701_wm9713: " Kuninori Morimoto
2019-05-22  3:42 ` [PATCH 044/145] ASoC: pxa: palm27x: " Kuninori Morimoto
2019-05-22  3:43 ` [PATCH 045/145] ASoC: pxa: zylonite: " Kuninori Morimoto
2019-05-22  3:43 ` [PATCH 046/145] ASoC: pxa: z2: " Kuninori Morimoto
2019-05-22  3:43 ` [PATCH 047/145] ASoC: pxa: ttc-dkb: " Kuninori Morimoto
2019-05-22  3:43 ` [PATCH 048/145] ASoC: pxa: tosa: " Kuninori Morimoto
2019-05-22  3:43 ` [PATCH 049/145] ASoC: pxa: spitz: " Kuninori Morimoto
2019-05-22  3:43 ` [PATCH 050/145] ASoC: pxa: poodle: " Kuninori Morimoto
2019-05-22  3:43 ` [PATCH 051/145] ASoC: kirkwood: armada-370-db: " Kuninori Morimoto
2019-05-22  3:43 ` [PATCH 052/145] ASoC: ti: n810: " Kuninori Morimoto
2019-05-22  3:43 ` [PATCH 053/145] ASoC: ti: osk5912: " Kuninori Morimoto
2019-05-22  3:43 ` [PATCH 054/145] ASoC: ti: ams-delta: " Kuninori Morimoto
2019-05-22  3:43 ` [PATCH 055/145] ASoC: ti: omap3pandora: " Kuninori Morimoto
2019-05-22  3:44 ` [PATCH 056/145] ASoC: ti: davinci-evm: " Kuninori Morimoto
2019-05-22  3:44 ` [PATCH 057/145] ASoC: ti: omap-hdmi: " Kuninori Morimoto
2019-05-22  3:44 ` [PATCH 058/145] ASoC: ti: omap-abe-twl6040: " Kuninori Morimoto
2019-05-22  3:44 ` [PATCH 059/145] ASoC: ti: omap-twl4030: " Kuninori Morimoto
2019-05-22  3:44 ` [PATCH 060/145] ASoC: ti: rx51: " Kuninori Morimoto
2019-05-22  3:44 ` [PATCH 061/145] ASoC: sh: migor: " Kuninori Morimoto
2019-05-22  3:44 ` [PATCH 062/145] ASoC: sh: sh7760-ac97: " Kuninori Morimoto
2019-05-22  3:44 ` [PATCH 063/145] ASoC: amd: acp-da7219-max98357a: " Kuninori Morimoto
2019-05-22  3:44 ` [PATCH 064/145] ASoC: amd: acp-rt5645: " Kuninori Morimoto
2019-05-22  3:44 ` [PATCH 065/145] ASoC: atmel: mikroe-proto: " Kuninori Morimoto
2019-05-29 15:24   ` Codrin.Ciubotariu
2019-05-22  3:44 ` [PATCH 066/145] ASoC: atmel: sam9x5_wm8731: " Kuninori Morimoto
2019-05-22  3:44 ` [PATCH 067/145] ASoC: atmel: sam9g20_wm8731: " Kuninori Morimoto
2019-05-22  3:45 ` [PATCH 068/145] ASoC: atmel: tse850-pcm5142: " Kuninori Morimoto
2019-05-22  3:45 ` [PATCH 069/145] ASoC: atmel: atmel-wm8904: " Kuninori Morimoto
2019-05-22  3:45 ` [PATCH 070/145] ASoC: atmel: atmel-pdmic: " Kuninori Morimoto
2019-05-22  3:45 ` [PATCH 071/145] ASoC: atmel: atmel-classd: " Kuninori Morimoto
2019-05-22  3:45 ` [PATCH 072/145] ASoC: au1x: db1000: " Kuninori Morimoto
2019-05-22  3:45 ` [PATCH 073/145] ASoC: au1x: db1200: " Kuninori Morimoto
2019-05-22  3:45 ` [PATCH 074/145] ASoC: cirrus: edb93xx: " Kuninori Morimoto
2019-05-22  3:45 ` [PATCH 075/145] ASoC: cirrus: simone: " Kuninori Morimoto
2019-05-22  3:45 ` [PATCH 076/145] ASoC: cirrus: snappercl15: " Kuninori Morimoto
2019-05-22  3:45 ` [PATCH 077/145] ASoC: fsl: efika-audio-fabric: " Kuninori Morimoto
2019-05-22  3:45 ` [PATCH 078/145] ASoC: fsl: imx-spdif: " Kuninori Morimoto
2019-05-22  3:46 ` [PATCH 079/145] ASoC: fsl: mx27vis-aic32x4: " Kuninori Morimoto
2019-05-22  3:46 ` [PATCH 080/145] ASoC: fsl: phycore-ac97: " Kuninori Morimoto
2019-05-22  3:46 ` [PATCH 081/145] ASoC: fsl: wm1133-ev1: " Kuninori Morimoto
2019-05-22  3:46 ` [PATCH 082/145] ASoC: fsl: fsl-asoc-card: " Kuninori Morimoto
2019-05-22  3:46 ` [PATCH 083/145] ASoC: fsl: mpc8610_hpcd/p1022_ds/p1022_rdk: " Kuninori Morimoto
2019-05-22  3:46 ` [PATCH 084/145] ASoC: fsl: imx-es8328: " Kuninori Morimoto
2019-05-22  3:46 ` [PATCH 085/145] ASoC: fsl: eukrea-tlv320: " Kuninori Morimoto
2019-05-22  3:46 ` [PATCH 086/145] ASoC: fsl: imx-sgtl5000: " Kuninori Morimoto
2019-05-22  3:46 ` [PATCH 087/145] ASoC: fsl: imx-mc13783: " Kuninori Morimoto
2019-05-22  3:46 ` [PATCH 088/145] ASoC: fsl: pcm030-audio-fabric: " Kuninori Morimoto
2019-05-22  3:46 ` [PATCH 089/145] ASoC: fsl: imx-audmix: " Kuninori Morimoto
2019-05-22  3:47 ` [PATCH 090/145] ASoC: jz4740: qi_lb60: " Kuninori Morimoto
2019-05-22  3:47 ` [PATCH 091/145] ASoC: meson: axg-card: " Kuninori Morimoto
2019-05-22  3:47 ` [PATCH 092/145] ASoC: mxs: mxs-sgtl5000: " Kuninori Morimoto
2019-05-22  3:47 ` [PATCH 093/145] ASoC: nuc900: nuc900-audio: " Kuninori Morimoto
2019-05-22  3:47 ` [PATCH 094/145] ASoC: qcom: storm: " Kuninori Morimoto
2019-05-22  3:47 ` [PATCH 095/145] ASoC: qcom: common: " Kuninori Morimoto
2019-05-22  3:47 ` [PATCH 096/145] ASoC: qcom: apq8016_sbc: " Kuninori Morimoto
2019-05-22  3:47 ` [PATCH 097/145] ASoC: rockchip: rk3399_gru_sound: " Kuninori Morimoto
2019-05-22  3:47 ` [PATCH 098/145] ASoC: rockchip: rk3288_hdmi_analog: " Kuninori Morimoto
2019-05-22  3:47 ` [PATCH 099/145] ASoC: rockchip: rockchip_rt5645: " Kuninori Morimoto
2019-05-22  3:48 ` [PATCH 100/145] ASoC: rockchip: rockchip_max98090: " Kuninori Morimoto
2019-05-22  3:48 ` [PATCH 101/145] ASoC: sirf: sirf-audio: " Kuninori Morimoto
2019-05-22  3:48 ` [PATCH 102/145] ASoC: ux500: mop500: " Kuninori Morimoto
2019-05-22  3:48 ` [PATCH 103/145] ASoC: sunxi: sun4i-codec: " Kuninori Morimoto
2019-05-22  3:48 ` [PATCH 104/145] ASoC: txx9: txx9aclc-generic: " Kuninori Morimoto
2019-05-22  3:48 ` [PATCH 105/145] ASoC: tegra: tegra_rt5677: " Kuninori Morimoto
2019-05-22  3:48 ` [PATCH 106/145] ASoC: tegra: tegra_wm8753: " Kuninori Morimoto
2019-05-22  3:48 ` [PATCH 107/145] ASoC: tegra: trimslice: " Kuninori Morimoto
2019-05-22  3:48 ` [PATCH 108/145] ASoC: tegra: tegra_alc5632: " Kuninori Morimoto
2019-05-22  3:48 ` [PATCH 109/145] ASoC: tegra: tegra_sgtl5000: " Kuninori Morimoto
2019-05-22  3:48 ` [PATCH 110/145] ASoC: tegra: tegra_rt5640: " Kuninori Morimoto
2019-05-22  3:48 ` [PATCH 111/145] ASoC: tegra: tegra_wm8903: " Kuninori Morimoto
2019-05-22  3:48 ` [PATCH 112/145] ASoC: tegra: tegra_wm9712: " Kuninori Morimoto
2019-05-22  3:48 ` [PATCH 113/145] ASoC: tegra: tegra_max98090: " Kuninori Morimoto
2019-05-22  3:49 ` [PATCH 114/145] ASoC: soc-topology: " Kuninori Morimoto
2019-05-22  3:49 ` [PATCH 115/145] ASoC: vc4: vc4_htmi: " Kuninori Morimoto
2019-05-22  3:49 ` [PATCH 116/145] ASoC: sof: " Kuninori Morimoto
2019-05-22  3:49 ` [PATCH 117/145] ASoC: Intel: bdw-rt5677: " Kuninori Morimoto
2019-05-22  3:49 ` [PATCH 118/145] ASoC: Intel: haswell: " Kuninori Morimoto
2019-05-22  3:49 ` [PATCH 119/145] ASoC: Intel: broadwell: " Kuninori Morimoto
2019-05-22  3:49 ` [PATCH 120/145] ASoC: Intel: bxt_da7219_max98357a: " Kuninori Morimoto
2019-05-22  3:49 ` [PATCH 121/145] ASoC: Intel: bxt_rt298: " Kuninori Morimoto
2019-05-22  3:49 ` [PATCH 122/145] ASoC: Intel: byt-rt5640: " Kuninori Morimoto
2019-05-22  3:49 ` [PATCH 123/145] ASoC: Intel: byt-max98090: " Kuninori Morimoto
2019-05-22  3:49 ` [PATCH 124/145] ASoC: Intel: bytcht_es8316: " Kuninori Morimoto
2019-05-22  3:50 ` [PATCH 125/145] ASoC: Intel: bytcht_nocodec: " Kuninori Morimoto
2019-05-22  3:50 ` [PATCH 126/145] ASoC: Intel: bytcht_da7213: " Kuninori Morimoto
2019-05-22  3:50 ` [PATCH 127/145] ASoC: Intel: bytcr_rt5651: " Kuninori Morimoto
2019-05-22  3:50 ` [PATCH 128/145] ASoC: Intel: bytcr_rt5640: " Kuninori Morimoto
2019-05-22  3:50 ` [PATCH 129/145] ASoC: Intel: cht_bsw_rt5645: " Kuninori Morimoto
2019-05-22  3:50 ` [PATCH 130/145] ASoC: Intel: cht_bsw_max98090_ti: " Kuninori Morimoto
2019-05-22  3:50 ` [PATCH 131/145] ASoC: Intel: cht_bsw_rt5672: " Kuninori Morimoto
2019-05-22  3:50 ` [PATCH 132/145] ASoC: Intel: cht_bsw_nau8824: " Kuninori Morimoto
2019-05-22  3:50 ` [PATCH 133/145] ASoC: Intel: kbl_rt5660: " Kuninori Morimoto
2019-05-22  3:50 ` [PATCH 134/145] ASoC: Intel: kbl_rt5663_max98927: " Kuninori Morimoto
2019-05-22  3:50 ` [PATCH 135/145] ASoC: Intel: kbl_rt5663_rt5514_max98927: " Kuninori Morimoto
2019-05-22  3:51 ` [PATCH 136/145] ASoC: Intel: kbl_da7219_max98927: " Kuninori Morimoto
2019-05-22  3:51 ` [PATCH 137/145] ASoC: Intel: kbl_da7219_max98357a: " Kuninori Morimoto
2019-05-22  3:51 ` [PATCH 138/145] ASoC: Intel: skl_nau88l25_ssm4567: " Kuninori Morimoto
2019-05-22  3:51 ` [PATCH 139/145] ASoC: Intel: skl_rt286: " Kuninori Morimoto
2019-05-22  3:51 ` [PATCH 140/145] ASoC: Intel: skl_nau88l25_max98357a: " Kuninori Morimoto
2019-05-22  3:51 ` [PATCH 141/145] ASoC: Intel: skl-pcm: " Kuninori Morimoto
2019-05-22  3:51 ` [PATCH 142/145] ASoC: Intel: skl_hda_dsp_common: " Kuninori Morimoto
2019-05-22  3:51 ` [PATCH 143/145] ASoC: Intel: glk_rt5682_max98357a: " Kuninori Morimoto
2019-05-22  3:51 ` [PATCH 144/145] ASoC: Intel: sof_rt5682: " Kuninori Morimoto
2019-05-22  3:51 ` Kuninori Morimoto [this message]
2019-05-24 15:58 ` [PATCH 000/145] ASoC: modern dai_link style support Pierre-Louis Bossart
2019-05-27  1:48   ` Kuninori Morimoto
2019-05-28 15:34     ` Pierre-Louis Bossart

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=87zhnfgnxd.wl-kuninori.morimoto.gx@renesas.com \
    --to=kuninori.morimoto.gx@renesas.com \
    --cc=alsa-devel@alsa-project.org \
    --cc=broonie@kernel.org \
    /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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.