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 v2 002/146] ASoC: simple-card: support snd_soc_dai_link_component style for cpu
Date: 06 Jun 2019 13:07:35 +0900	[thread overview]
Message-ID: <87ef47mkub.wl-kuninori.morimoto.gx@renesas.com> (raw)
In-Reply-To: <87h893mkvi.wl-kuninori.morimoto.gx@renesas.com>

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

ASoC supports modern style dai_link (= snd_soc_dai_link_component) for
CPU. legacy style dai_link (= cpu_dai_name, cpu_name, cpu_of_node) are
no longer needed.
This patch switches to modern style.

Signed-off-by: Kuninori Morimoto <kuninori.morimoto.gx@renesas.com>
---
 include/sound/simple_card_utils.h     | 20 ++++++------------
 sound/soc/generic/audio-graph-card.c  | 30 +++++++--------------------
 sound/soc/generic/simple-card-utils.c | 21 ++++++-------------
 sound/soc/generic/simple-card.c       | 39 +++++++++++++----------------------
 4 files changed, 34 insertions(+), 76 deletions(-)

diff --git a/include/sound/simple_card_utils.h b/include/sound/simple_card_utils.h
index 3429888..954563e 100644
--- a/include/sound/simple_card_utils.h
+++ b/include/sound/simple_card_utils.h
@@ -42,6 +42,7 @@ struct asoc_simple_priv {
 	struct simple_dai_props {
 		struct asoc_simple_dai *cpu_dai;
 		struct asoc_simple_dai *codec_dai;
+		struct snd_soc_dai_link_component cpus;   /* single cpu */
 		struct snd_soc_dai_link_component codecs; /* single codec */
 		struct snd_soc_dai_link_component platforms;
 		struct asoc_simple_data adata;
@@ -80,16 +81,12 @@ int asoc_simple_parse_card_name(struct snd_soc_card *card,
 				char *prefix);
 
 #define asoc_simple_parse_clk_cpu(dev, node, dai_link, simple_dai)		\
-	asoc_simple_parse_clk(dev, node, dai_link->cpu_of_node, simple_dai, \
-				   dai_link->cpu_dai_name, NULL)
+	asoc_simple_parse_clk(dev, node, simple_dai, dai_link->cpus)
 #define asoc_simple_parse_clk_codec(dev, node, dai_link, simple_dai)	\
-	asoc_simple_parse_clk(dev, node, dai_link->codec_of_node, simple_dai,\
-				   dai_link->codec_dai_name, dai_link->codecs)
+	asoc_simple_parse_clk(dev, node, simple_dai, dai_link->codecs)
 int asoc_simple_parse_clk(struct device *dev,
 			  struct device_node *node,
-			  struct device_node *dai_of_node,
 			  struct asoc_simple_dai *simple_dai,
-			  const char *dai_name,
 			  struct snd_soc_dai_link_component *dlc);
 int asoc_simple_startup(struct snd_pcm_substream *substream);
 void asoc_simple_shutdown(struct snd_pcm_substream *substream);
@@ -100,16 +97,11 @@ int asoc_simple_be_hw_params_fixup(struct snd_soc_pcm_runtime *rtd,
 				   struct snd_pcm_hw_params *params);
 
 #define asoc_simple_parse_cpu(node, dai_link, is_single_link)	\
-	asoc_simple_parse_dai(node, NULL,				\
-		&dai_link->cpu_of_node,					\
-		&dai_link->cpu_dai_name, is_single_link)
+	asoc_simple_parse_dai(node, dai_link->cpus, is_single_link)
 #define asoc_simple_parse_codec(node, dai_link)	\
-	asoc_simple_parse_dai(node, dai_link->codecs,			\
-				   &dai_link->codec_of_node,			\
-				   &dai_link->codec_dai_name, NULL)
+	asoc_simple_parse_dai(node, dai_link->codecs, NULL)
 #define asoc_simple_parse_platform(node, dai_link)	\
-	asoc_simple_parse_dai(node, dai_link->platforms,			\
-		&dai_link->platform_of_node, NULL, NULL)
+	asoc_simple_parse_dai(node, dai_link->platforms, NULL)
 
 #define asoc_simple_parse_tdm(np, dai)			\
 	snd_soc_of_parse_tdm_slot(np,	&(dai)->tx_slot_mask,	\
diff --git a/sound/soc/generic/audio-graph-card.c b/sound/soc/generic/audio-graph-card.c
index ec7e673..e438011 100644
--- a/sound/soc/generic/audio-graph-card.c
+++ b/sound/soc/generic/audio-graph-card.c
@@ -111,29 +111,14 @@ static int graph_get_dai_id(struct device_node *ep)
 
 static int asoc_simple_parse_dai(struct device_node *ep,
 				 struct snd_soc_dai_link_component *dlc,
-				 struct device_node **dai_of_node,
-				 const char **dai_name,
 				 int *is_single_link)
 {
 	struct device_node *node;
 	struct of_phandle_args args;
 	int ret;
 
-	/*
-	 * Use snd_soc_dai_link_component instead of legacy style.
-	 * It is only for codec, but cpu will be supported in the future.
-	 * see
-	 *	soc-core.c :: snd_soc_init_multicodec()
-	 */
-	if (dlc) {
-		dai_name	= &dlc->dai_name;
-		dai_of_node	= &dlc->of_node;
-	}
-
 	if (!ep)
 		return 0;
-	if (!dai_name)
-		return 0;
 
 	node = of_graph_get_port_parent(ep);
 
@@ -142,11 +127,11 @@ static int asoc_simple_parse_dai(struct device_node *ep,
 	args.args[0]	= graph_get_dai_id(ep);
 	args.args_count	= (of_graph_get_endpoint_count(node) > 1);
 
-	ret = snd_soc_get_dai_name(&args, dai_name);
+	ret = snd_soc_get_dai_name(&args, &dlc->dai_name);
 	if (ret < 0)
 		return ret;
 
-	*dai_of_node = node;
+	dlc->of_node = node;
 
 	if (is_single_link)
 		*is_single_link = of_graph_get_endpoint_count(node) == 1;
@@ -207,6 +192,7 @@ static int graph_dai_link_of_dpcm(struct asoc_simple_priv *priv,
 	struct device_node *ports;
 	struct device_node *node;
 	struct asoc_simple_dai *dai;
+	struct snd_soc_dai_link_component *cpus = dai_link->cpus;
 	struct snd_soc_dai_link_component *codecs = dai_link->codecs;
 	int ret;
 
@@ -251,7 +237,7 @@ static int graph_dai_link_of_dpcm(struct asoc_simple_priv *priv,
 
 		ret = asoc_simple_set_dailink_name(dev, dai_link,
 						   "fe.%s",
-						   dai_link->cpu_dai_name);
+						   cpus->dai_name);
 		if (ret < 0)
 			return ret;
 
@@ -261,9 +247,9 @@ static int graph_dai_link_of_dpcm(struct asoc_simple_priv *priv,
 		struct snd_soc_codec_conf *cconf;
 
 		/* FE is dummy */
-		dai_link->cpu_of_node		= NULL;
-		dai_link->cpu_dai_name		= "snd-soc-dummy-dai";
-		dai_link->cpu_name		= "snd-soc-dummy";
+		cpus->of_node		= NULL;
+		cpus->dai_name		= "snd-soc-dummy-dai";
+		cpus->name		= "snd-soc-dummy";
 
 		/* BE settings */
 		dai_link->no_pcm		= 1;
@@ -383,7 +369,7 @@ static int graph_dai_link_of(struct asoc_simple_priv *priv,
 
 	ret = asoc_simple_set_dailink_name(dev, dai_link,
 					   "%s-%s",
-					   dai_link->cpu_dai_name,
+					   dai_link->cpus->dai_name,
 					   dai_link->codecs->dai_name);
 	if (ret < 0)
 		return ret;
diff --git a/sound/soc/generic/simple-card-utils.c b/sound/soc/generic/simple-card-utils.c
index f4c6375..ac8678f 100644
--- a/sound/soc/generic/simple-card-utils.c
+++ b/sound/soc/generic/simple-card-utils.c
@@ -159,24 +159,13 @@ static void asoc_simple_clk_disable(struct asoc_simple_dai *dai)
 
 int asoc_simple_parse_clk(struct device *dev,
 			  struct device_node *node,
-			  struct device_node *dai_of_node,
 			  struct asoc_simple_dai *simple_dai,
-			  const char *dai_name,
 			  struct snd_soc_dai_link_component *dlc)
 {
 	struct clk *clk;
 	u32 val;
 
 	/*
-	 * Use snd_soc_dai_link_component instead of legacy style.
-	 * It is only for codec, but cpu will be supported in the future.
-	 * see
-	 *	soc-core.c :: snd_soc_init_multicodec()
-	 */
-	if (dlc)
-		dai_of_node	= dlc->of_node;
-
-	/*
 	 * Parse dai->sysclk come from "clocks = <&xxx>"
 	 * (if system has common clock)
 	 *  or "system-clock-frequency = <xxx>"
@@ -190,7 +179,7 @@ int asoc_simple_parse_clk(struct device *dev,
 	} else if (!of_property_read_u32(node, "system-clock-frequency", &val)) {
 		simple_dai->sysclk = val;
 	} else {
-		clk = devm_get_clk_from_child(dev, dai_of_node, NULL);
+		clk = devm_get_clk_from_child(dev, dlc->of_node, NULL);
 		if (!IS_ERR(clk))
 			simple_dai->sysclk = clk_get_rate(clk);
 	}
@@ -359,7 +348,7 @@ void asoc_simple_canonicalize_platform(struct snd_soc_dai_link *dai_link)
 {
 	/* Assumes platform == cpu */
 	if (!dai_link->platforms->of_node)
-		dai_link->platforms->of_node = dai_link->cpu_of_node;
+		dai_link->platforms->of_node = dai_link->cpus->of_node;
 }
 EXPORT_SYMBOL_GPL(asoc_simple_canonicalize_platform);
 
@@ -376,7 +365,7 @@ void asoc_simple_canonicalize_cpu(struct snd_soc_dai_link *dai_link,
 	 *	fmt_multiple_name()
 	 */
 	if (is_single_links)
-		dai_link->cpu_dai_name = NULL;
+		dai_link->cpus->dai_name = NULL;
 }
 EXPORT_SYMBOL_GPL(asoc_simple_canonicalize_cpu);
 
@@ -386,7 +375,7 @@ int asoc_simple_clean_reference(struct snd_soc_card *card)
 	int i;
 
 	for_each_card_prelinks(card, i, dai_link) {
-		of_node_put(dai_link->cpu_of_node);
+		of_node_put(dai_link->cpus->of_node);
 		of_node_put(dai_link->codecs->of_node);
 	}
 	return 0;
@@ -576,6 +565,8 @@ int asoc_simple_init_priv(struct asoc_simple_priv *priv,
 	 *	simple-card-utils.c :: asoc_simple_canonicalize_platform()
 	 */
 	for (i = 0; i < li->link; i++) {
+		dai_link[i].cpus		= &dai_props[i].cpus;
+		dai_link[i].num_cpus		= 1;
 		dai_link[i].codecs		= &dai_props[i].codecs;
 		dai_link[i].num_codecs		= 1;
 		dai_link[i].platforms		= &dai_props[i].platforms;
diff --git a/sound/soc/generic/simple-card.c b/sound/soc/generic/simple-card.c
index d16e894..e5cde0d 100644
--- a/sound/soc/generic/simple-card.c
+++ b/sound/soc/generic/simple-card.c
@@ -30,8 +30,6 @@ static const struct snd_soc_ops simple_ops = {
 
 static int asoc_simple_parse_dai(struct device_node *node,
 				 struct snd_soc_dai_link_component *dlc,
-				 struct device_node **dai_of_node,
-				 const char **dai_name,
 				 int *is_single_link)
 {
 	struct of_phandle_args args;
@@ -41,17 +39,6 @@ static int asoc_simple_parse_dai(struct device_node *node,
 		return 0;
 
 	/*
-	 * Use snd_soc_dai_link_component instead of legacy style.
-	 * It is only for codec, but cpu will be supported in the future.
-	 * see
-	 *	soc-core.c :: snd_soc_init_multicodec()
-	 */
-	if (dlc) {
-		dai_name	= &dlc->dai_name;
-		dai_of_node	= &dlc->of_node;
-	}
-
-	/*
 	 * Get node via "sound-dai = <&phandle port>"
 	 * it will be used as xxx_of_node on soc_bind_dai_link()
 	 */
@@ -60,13 +47,11 @@ static int asoc_simple_parse_dai(struct device_node *node,
 		return ret;
 
 	/* Get dai->name */
-	if (dai_name) {
-		ret = snd_soc_of_get_dai_name(node, dai_name);
-		if (ret < 0)
-			return ret;
-	}
+	ret = snd_soc_of_get_dai_name(node, &dlc->dai_name);
+	if (ret < 0)
+		return ret;
 
-	*dai_of_node = args.np;
+	dlc->of_node = args.np;
 
 	if (is_single_link)
 		*is_single_link = !args.args_count;
@@ -119,6 +104,7 @@ static int simple_dai_link_of_dpcm(struct asoc_simple_priv *priv,
 	struct snd_soc_dai_link *dai_link = simple_priv_to_link(priv, li->link);
 	struct simple_dai_props *dai_props = simple_priv_to_props(priv, li->link);
 	struct asoc_simple_dai *dai;
+	struct snd_soc_dai_link_component *cpus = dai_link->cpus;
 	struct snd_soc_dai_link_component *codecs = dai_link->codecs;
 	struct device_node *top = dev->of_node;
 	struct device_node *node = of_get_parent(np);
@@ -169,7 +155,7 @@ static int simple_dai_link_of_dpcm(struct asoc_simple_priv *priv,
 
 		ret = asoc_simple_set_dailink_name(dev, dai_link,
 						   "fe.%s",
-						   dai_link->cpu_dai_name);
+						   cpus->dai_name);
 		if (ret < 0)
 			return ret;
 
@@ -178,9 +164,9 @@ static int simple_dai_link_of_dpcm(struct asoc_simple_priv *priv,
 		struct snd_soc_codec_conf *cconf;
 
 		/* FE is dummy */
-		dai_link->cpu_of_node		= NULL;
-		dai_link->cpu_dai_name		= "snd-soc-dummy-dai";
-		dai_link->cpu_name		= "snd-soc-dummy";
+		cpus->of_node		= NULL;
+		cpus->dai_name		= "snd-soc-dummy-dai";
+		cpus->name		= "snd-soc-dummy";
 
 		/* BE settings */
 		dai_link->no_pcm		= 1;
@@ -320,7 +306,7 @@ static int simple_dai_link_of(struct asoc_simple_priv *priv,
 
 	ret = asoc_simple_set_dailink_name(dev, dai_link,
 					   "%s-%s",
-					   dai_link->cpu_dai_name,
+					   dai_link->cpus->dai_name,
 					   dai_link->codecs->dai_name);
 	if (ret < 0)
 		goto dai_link_of_err;
@@ -646,6 +632,7 @@ static int asoc_simple_probe(struct platform_device *pdev)
 
 	} else {
 		struct asoc_simple_card_info *cinfo;
+		struct snd_soc_dai_link_component *cpus;
 		struct snd_soc_dai_link_component *codecs;
 		struct snd_soc_dai_link_component *platform;
 		struct snd_soc_dai_link *dai_link = priv->dai_link;
@@ -671,6 +658,9 @@ static int asoc_simple_probe(struct platform_device *pdev)
 		dai_props->cpu_dai	= &priv->dais[dai_idx++];
 		dai_props->codec_dai	= &priv->dais[dai_idx++];
 
+		cpus			= dai_link->cpus;
+		cpus->dai_name		= cinfo->cpu_dai.name;
+
 		codecs			= dai_link->codecs;
 		codecs->name		= cinfo->codec;
 		codecs->dai_name	= cinfo->codec_dai.name;
@@ -681,7 +671,6 @@ static int asoc_simple_probe(struct platform_device *pdev)
 		card->name		= (cinfo->card) ? cinfo->card : cinfo->name;
 		dai_link->name		= cinfo->name;
 		dai_link->stream_name	= cinfo->name;
-		dai_link->cpu_dai_name	= cinfo->cpu_dai.name;
 		dai_link->dai_fmt	= cinfo->daifmt;
 		dai_link->init		= asoc_simple_dai_init;
 		memcpy(dai_props->cpu_dai, &cinfo->cpu_dai,
-- 
2.7.4

  parent reply	other threads:[~2019-06-06  4:07 UTC|newest]

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

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=87ef47mkub.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.