All of lore.kernel.org
 help / color / mirror / Atom feed
From: Mark Brown <broonie@kernel.org>
To: Kuninori Morimoto <kuninori.morimoto.gx@renesas.com>
Cc: Linux-ALSA <alsa-devel@alsa-project.org>,
	Mark Brown <broonie@kernel.org>,
	Pierre-Louis Bossart <pierre-louis.bossart@linux.intel.com>
Subject: Applied "ASoC: Intel: cht_bsw_rt5672: use modern dai_link style" to the asoc tree
Date: Thu,  6 Jun 2019 22:26:04 +0100 (BST)	[thread overview]
Message-ID: <20190606212604.58C0F440046@finisterre.sirena.org.uk> (raw)
In-Reply-To: <875zpjfjdp.wl-kuninori.morimoto.gx@renesas.com>

The patch

   ASoC: Intel: cht_bsw_rt5672: use modern dai_link style

has been applied to the asoc tree at

   https://git.kernel.org/pub/scm/linux/kernel/git/broonie/sound.git for-5.3

All being well this means that it will be integrated into the linux-next
tree (usually sometime in the next 24 hours) and sent to Linus during
the next merge window (or sooner if it is a bug fix), however if
problems are discovered then the patch may be dropped or reverted.  

You may get further e-mails resulting from automated or manual testing
and review of the tree, please engage with people reporting problems and
send followup patches addressing any issues that are reported if needed.

If any updates are required or you are submitting further changes they
should be sent as incremental updates against current git, existing
patches will not be replaced.

Please add any relevant lists and maintainers to the CCs when replying
to this mail.

Thanks,
Mark

>From a61142bb0aa04ccc26409d91ad9060fbe2f1b926 Mon Sep 17 00:00:00 2001
From: Kuninori Morimoto <kuninori.morimoto.gx@renesas.com>
Date: Thu, 6 Jun 2019 13:21:01 +0900
Subject: [PATCH] ASoC: Intel: cht_bsw_rt5672: use modern dai_link style

ASoC is now supporting modern style dai_link
(= snd_soc_dai_link_component) for CPU/Codec/Platform.
This patch switches to use it.

Signed-off-by: Kuninori Morimoto <kuninori.morimoto.gx@renesas.com>
Signed-off-by: Pierre-Louis Bossart <pierre-louis.bossart@linux.intel.com>
Signed-off-by: Mark Brown <broonie@kernel.org>
---
 sound/soc/intel/boards/cht_bsw_rt5672.c | 39 +++++++++++++++----------
 1 file changed, 24 insertions(+), 15 deletions(-)

diff --git a/sound/soc/intel/boards/cht_bsw_rt5672.c b/sound/soc/intel/boards/cht_bsw_rt5672.c
index 0f7770822388..270d5705c542 100644
--- a/sound/soc/intel/boards/cht_bsw_rt5672.c
+++ b/sound/soc/intel/boards/cht_bsw_rt5672.c
@@ -295,32 +295,44 @@ static const struct snd_soc_ops cht_be_ssp2_ops = {
 	.hw_params = cht_aif1_hw_params,
 };
 
+SND_SOC_DAILINK_DEF(dummy,
+	DAILINK_COMP_ARRAY(COMP_DUMMY()));
+
+SND_SOC_DAILINK_DEF(media,
+	DAILINK_COMP_ARRAY(COMP_CPU("media-cpu-dai")));
+
+SND_SOC_DAILINK_DEF(deepbuffer,
+	DAILINK_COMP_ARRAY(COMP_CPU("deepbuffer-cpu-dai")));
+
+SND_SOC_DAILINK_DEF(ssp2_port,
+	DAILINK_COMP_ARRAY(COMP_CPU("ssp2-port")));
+SND_SOC_DAILINK_DEF(ssp2_codec,
+	DAILINK_COMP_ARRAY(COMP_CODEC("i2c-10EC5670:00",
+				      "rt5670-aif1")));
+
+SND_SOC_DAILINK_DEF(platform,
+	DAILINK_COMP_ARRAY(COMP_PLATFORM("sst-mfld-platform")));
+
 static struct snd_soc_dai_link cht_dailink[] = {
 	/* Front End DAI links */
 	[MERR_DPCM_AUDIO] = {
 		.name = "Audio Port",
 		.stream_name = "Audio",
-		.cpu_dai_name = "media-cpu-dai",
-		.codec_dai_name = "snd-soc-dummy-dai",
-		.codec_name = "snd-soc-dummy",
-		.platform_name = "sst-mfld-platform",
 		.nonatomic = true,
 		.dynamic = 1,
 		.dpcm_playback = 1,
 		.dpcm_capture = 1,
 		.ops = &cht_aif1_ops,
+		SND_SOC_DAILINK_REG(media, dummy, platform),
 	},
 	[MERR_DPCM_DEEP_BUFFER] = {
 		.name = "Deep-Buffer Audio Port",
 		.stream_name = "Deep-Buffer Audio",
-		.cpu_dai_name = "deepbuffer-cpu-dai",
-		.codec_dai_name = "snd-soc-dummy-dai",
-		.codec_name = "snd-soc-dummy",
-		.platform_name = "sst-mfld-platform",
 		.nonatomic = true,
 		.dynamic = 1,
 		.dpcm_playback = 1,
 		.ops = &cht_aif1_ops,
+		SND_SOC_DAILINK_REG(deepbuffer, dummy, platform),
 	},
 
 	/* Back End DAI links */
@@ -328,17 +340,14 @@ static struct snd_soc_dai_link cht_dailink[] = {
 		/* SSP2 - Codec */
 		.name = "SSP2-Codec",
 		.id = 0,
-		.cpu_dai_name = "ssp2-port",
-		.platform_name = "sst-mfld-platform",
 		.no_pcm = 1,
 		.nonatomic = true,
-		.codec_dai_name = "rt5670-aif1",
-		.codec_name = "i2c-10EC5670:00",
 		.init = cht_codec_init,
 		.be_hw_params_fixup = cht_codec_fixup,
 		.dpcm_playback = 1,
 		.dpcm_capture = 1,
 		.ops = &cht_be_ssp2_ops,
+		SND_SOC_DAILINK_REG(ssp2_port, ssp2_codec, platform),
 	},
 };
 
@@ -417,9 +426,9 @@ static int snd_cht_mc_probe(struct platform_device *pdev)
 			 "i2c-%s", acpi_dev_name(adev));
 		put_device(&adev->dev);
 		for (i = 0; i < ARRAY_SIZE(cht_dailink); i++) {
-			if (!strcmp(cht_dailink[i].codec_name,
-				RT5672_I2C_DEFAULT)) {
-				cht_dailink[i].codec_name = drv->codec_name;
+			if (!strcmp(cht_dailink[i].codecs->name,
+				    RT5672_I2C_DEFAULT)) {
+				cht_dailink[i].codecs->name = drv->codec_name;
 				break;
 			}
 		}
-- 
2.20.1

  reply	other threads:[~2019-06-06 21:26 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   ` Mark Brown [this message]
2019-06-06  4:21 ` [PATCH v2 133/146] ASoC: Intel: cht_bsw_nau8824: " 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=20190606212604.58C0F440046@finisterre.sirena.org.uk \
    --to=broonie@kernel.org \
    --cc=alsa-devel@alsa-project.org \
    --cc=kuninori.morimoto.gx@renesas.com \
    --cc=pierre-louis.bossart@linux.intel.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.