All of lore.kernel.org
 help / color / mirror / Atom feed
From: "Rojewski, Cezary" <cezary.rojewski@intel.com>
To: Kuninori Morimoto <kuninori.morimoto.gx@renesas.com>,
	Mark Brown <broonie@kernel.org>
Cc: Linux-ALSA <alsa-devel@alsa-project.org>
Subject: Re: [PATCH v2 146/146] ASoC: soc-core: remove legacy style	dai_link
Date: Thu, 6 Jun 2019 18:25:16 +0000	[thread overview]
Message-ID: <3BD9CEE4EBD5E74B98FE2D277EB60E0B3900FE91@IRSMSX104.ger.corp.intel.com> (raw)
In-Reply-To: <87lfyfe4r3.wl-kuninori.morimoto.gx@renesas.com>

Hmm, guess reviewing 001 proved redundant after all. Unless I got it wrong, you are removing code implemented in that very patch (the 001).
Any chance for eliminating ping-pong effect and doing the "right" changes from the get-go? Especially the renames are confusing here (s/cleanup_platform/cleanup_legacy/) if you intend to remove them soon after.

If there is no other way around it and solution is accepted, a note, perhaps in 001 would be helpful for future readers.

Czarek

>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 e069dfb..b28dda9 100644
>--- a/sound/soc/soc-core.c
>+++ b/sound/soc/soc-core.c
>@@ -1052,167 +1052,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) {
>@@ -2059,7 +1910,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;
> 			}
>@@ -2110,7 +1961,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);
>@@ -2867,7 +2717,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

  reply	other threads:[~2019-06-06 18:25 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 ` [PATCH v2 002/146] ASoC: simple-card: support snd_soc_dai_link_component style for cpu Kuninori Morimoto
2019-06-06 21:27   ` Applied "ASoC: simple-card: support snd_soc_dai_link_component style for cpu" to the asoc tree 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 [this message]
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=3BD9CEE4EBD5E74B98FE2D277EB60E0B3900FE91@IRSMSX104.ger.corp.intel.com \
    --to=cezary.rojewski@intel.com \
    --cc=alsa-devel@alsa-project.org \
    --cc=broonie@kernel.org \
    --cc=kuninori.morimoto.gx@renesas.com \
    /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.