All of lore.kernel.org
 help / color / mirror / Atom feed
From: Mark Brown <broonie@kernel.org>
To: YueHaibing <yuehaibing@huawei.com>
Cc: alexandre.torgue@st.com, alsa-devel@alsa-project.org,
	arnaud.pouliquen@st.com, baohua@kernel.org,
	bcm-kernel-feedback-list@broadcom.com, broonie@kernel.org,
	daniel@zonque.org, eric@anholt.net, festevam@gmail.com,
	f.fainelli@gmail.com, gregkh@linuxfoundation.org,
	haojian.zhuang@gmail.com, Hulk Robot <hulkci@huawei.com>,
	jbrunet@baylibre.com, jcmvbkbc@gmail.com, jonathanh@nvidia.com,
	kernel@pengutronix.de, khilman@baylibre.com, lgirdwood@gmail.com,
	linux-amlogic@lists.infradead.org,
	linux-arm-kernel@lists.infradead.org, linux-imx@nxp.com,
	linux-kernel@vger.kernel.org, linux-mediatek@lists.infradead.org,
	linuxppc-dev@lists.ozlabs.org,
	linux-rpi-kernel@lists.infradead.org,
	linux-stm32@st-md-mailman.stormreply.com,
	linux-tegra@vger.kernel.org, linux-xtensa@linux-xtensa.org
Subject: Applied "ASoC: bcm2835-i2s: use devm_platform_ioremap_resource() to simplify code" to the asoc tree
Date: Wed, 31 Jul 2019 12:29:48 +0100 (BST)	[thread overview]
Message-ID: <20190731112948.339E92742C99@ypsilon.sirena.org.uk> (raw)
In-Reply-To: <20190727150738.54764-10-yuehaibing@huawei.com>

The patch

   ASoC: bcm2835-i2s: use devm_platform_ioremap_resource() to simplify code

has been applied to the asoc tree at

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

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 d400b1b30cbff1c0962bbb3f895e839ccd120cb7 Mon Sep 17 00:00:00 2001
From: YueHaibing <yuehaibing@huawei.com>
Date: Sat, 27 Jul 2019 23:07:13 +0800
Subject: [PATCH] ASoC: bcm2835-i2s: use devm_platform_ioremap_resource() to
 simplify code

Use devm_platform_ioremap_resource() to simplify the code a bit.
This is detected by coccinelle.

Reported-by: Hulk Robot <hulkci@huawei.com>
Signed-off-by: YueHaibing <yuehaibing@huawei.com>
Link: https://lore.kernel.org/r/20190727150738.54764-10-yuehaibing@huawei.com
Signed-off-by: Mark Brown <broonie@kernel.org>
---
 sound/soc/bcm/bcm2835-i2s.c | 4 +---
 1 file changed, 1 insertion(+), 3 deletions(-)

diff --git a/sound/soc/bcm/bcm2835-i2s.c b/sound/soc/bcm/bcm2835-i2s.c
index 5ef80f3d446a..e6a12e271b07 100644
--- a/sound/soc/bcm/bcm2835-i2s.c
+++ b/sound/soc/bcm/bcm2835-i2s.c
@@ -828,7 +828,6 @@ static int bcm2835_i2s_probe(struct platform_device *pdev)
 {
 	struct bcm2835_i2s_dev *dev;
 	int ret;
-	struct resource *mem;
 	void __iomem *base;
 	const __be32 *addr;
 	dma_addr_t dma_base;
@@ -848,8 +847,7 @@ static int bcm2835_i2s_probe(struct platform_device *pdev)
 	}
 
 	/* Request ioarea */
-	mem = platform_get_resource(pdev, IORESOURCE_MEM, 0);
-	base = devm_ioremap_resource(&pdev->dev, mem);
+	base = devm_platform_ioremap_resource(pdev, 0);
 	if (IS_ERR(base))
 		return PTR_ERR(base);
 
-- 
2.20.1

WARNING: multiple messages have this Message-ID (diff)
From: Mark Brown <broonie@kernel.org>
To: YueHaibing <yuehaibing@huawei.com>
Cc: alexandre.torgue@st.com, alsa-devel@alsa-project.org,
	arnaud.pouliquen@st.com, baohua@kernel.org,
	bcm-kernel-feedback-list@broadcom.com, broonie@kernel.org,
	daniel@zonque.org, eric@anholt.net, festevam@gmail.com,
	f.fainelli@gmail.com, gregkh@linuxfoundation.org,
	haojian.zhuang@gmail.com, Hulk Robot <hulkci@huawei.com>,
	jbrunet@baylibre.com, jcmvbkbc@gmail.com, jonathanh@nvidia.com,
	kernel@pengutronix.de, khilman@baylibre.com, lgirdwood@gmail.com,
	linux-amlogic@lists.infradead.org,
	linux-arm-kernel@lists.infradead.org, linux-imx@nxp.com,
	linux-kernel@vger.kernel.org, linux-mediatek@lists.infradead.org,
	linuxppc-dev@lists.ozlabs.org,
	linux-rpi-kernel@lists.infradead.org,
	linux-stm32@st-md-mailman.stormreply.com,
	linux-tegra@vger.kernel.org, linux-xtensa@linux-xtensa.org,
	Mark Brown <broonie@kernel.org>,
	matthias.bgg@gmail.com, mcoquelin.stm32@gmail.com,
	michal.simek@xilinx.com, mripard@kernel.org,
	nicoleotsuka@gmail.com, olivier.moysan@st.com,
	paul@crapouillou.net, perex@perex.cz, rjui@broadcom.com,
	robert.jarzmik@free.fr, sbranden@broadcom.com,
	s.hauer@pengutronix.de, shawnguo@kernel.org,
	thierry.reding@gmail.com, timur@kernel.org, tiwai@suse.com,
	wahrenst@gmx.net, wens@csie.org, Xiubo.Lee@gmail.com,
	yamada.masahiro@socionext.com
Subject: Applied "ASoC: bcm2835-i2s: use devm_platform_ioremap_resource() to simplify code" to the asoc tree
Date: Wed, 31 Jul 2019 12:29:48 +0100 (BST)	[thread overview]
Message-ID: <20190731112948.339E92742C99@ypsilon.sirena.org.uk> (raw)
In-Reply-To: <20190727150738.54764-10-yuehaibing@huawei.com>

The patch

   ASoC: bcm2835-i2s: use devm_platform_ioremap_resource() to simplify code

has been applied to the asoc tree at

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

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 d400b1b30cbff1c0962bbb3f895e839ccd120cb7 Mon Sep 17 00:00:00 2001
From: YueHaibing <yuehaibing@huawei.com>
Date: Sat, 27 Jul 2019 23:07:13 +0800
Subject: [PATCH] ASoC: bcm2835-i2s: use devm_platform_ioremap_resource() to
 simplify code

Use devm_platform_ioremap_resource() to simplify the code a bit.
This is detected by coccinelle.

Reported-by: Hulk Robot <hulkci@huawei.com>
Signed-off-by: YueHaibing <yuehaibing@huawei.com>
Link: https://lore.kernel.org/r/20190727150738.54764-10-yuehaibing@huawei.com
Signed-off-by: Mark Brown <broonie@kernel.org>
---
 sound/soc/bcm/bcm2835-i2s.c | 4 +---
 1 file changed, 1 insertion(+), 3 deletions(-)

diff --git a/sound/soc/bcm/bcm2835-i2s.c b/sound/soc/bcm/bcm2835-i2s.c
index 5ef80f3d446a..e6a12e271b07 100644
--- a/sound/soc/bcm/bcm2835-i2s.c
+++ b/sound/soc/bcm/bcm2835-i2s.c
@@ -828,7 +828,6 @@ static int bcm2835_i2s_probe(struct platform_device *pdev)
 {
 	struct bcm2835_i2s_dev *dev;
 	int ret;
-	struct resource *mem;
 	void __iomem *base;
 	const __be32 *addr;
 	dma_addr_t dma_base;
@@ -848,8 +847,7 @@ static int bcm2835_i2s_probe(struct platform_device *pdev)
 	}
 
 	/* Request ioarea */
-	mem = platform_get_resource(pdev, IORESOURCE_MEM, 0);
-	base = devm_ioremap_resource(&pdev->dev, mem);
+	base = devm_platform_ioremap_resource(pdev, 0);
 	if (IS_ERR(base))
 		return PTR_ERR(base);
 
-- 
2.20.1


WARNING: multiple messages have this Message-ID (diff)
From: Mark Brown <broonie@kernel.org>
To: YueHaibing <yuehaibing@huawei.com>
Cc: alexandre.torgue@st.com, alsa-devel@alsa-project.org,
	arnaud.pouliquen@st.com, baohua@kernel.org,
	bcm-kernel-feedback-list@broadcom.com, broonie@kernel.org,
	daniel@zonque.org, eric@anholt.net, festevam@gmail.com,
	f.fainelli@gmail.com, gregkh@linuxfoundation.org,
	haojian.zhuang@gmail.com, Hulk Robot <hulkci@huawei.com>,
	jbrunet@baylibre.com, jcmvbkbc@gmail.com, jonathanh@nvidia.com,
	kernel@pengutronix.de, khilman@baylibre.com, lgirdwood@gmail.com,
	linux-amlogic@lists.infradead.org,
	linux-arm-kernel@lists.infradead.org, linux-imx@nxp.com,
	linux-kernel@vger.kernel.org, linux-mediatek@lists.infradead.org,
	linuxppc-dev@lists.ozlabs.org,
	linux-rpi-kernel@lists.infradead.org,
	linux-stm32@st-md-mailman.stormreply.com,
	linux-tegra@vger.kernel.org, linux-xtensa@linux-xtensa.org
Subject: Applied "ASoC: bcm2835-i2s: use devm_platform_ioremap_resource() to simplify code" to the asoc tree
Date: Wed, 31 Jul 2019 12:29:48 +0100 (BST)	[thread overview]
Message-ID: <20190731112948.339E92742C99@ypsilon.sirena.org.uk> (raw)
In-Reply-To: <20190727150738.54764-10-yuehaibing@huawei.com>

The patch

   ASoC: bcm2835-i2s: use devm_platform_ioremap_resource() to simplify code

has been applied to the asoc tree at

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

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 d400b1b30cbff1c0962bbb3f895e839ccd120cb7 Mon Sep 17 00:00:00 2001
From: YueHaibing <yuehaibing@huawei.com>
Date: Sat, 27 Jul 2019 23:07:13 +0800
Subject: [PATCH] ASoC: bcm2835-i2s: use devm_platform_ioremap_resource() to
 simplify code

Use devm_platform_ioremap_resource() to simplify the code a bit.
This is detected by coccinelle.

Reported-by: Hulk Robot <hulkci@huawei.com>
Signed-off-by: YueHaibing <yuehaibing@huawei.com>
Link: https://lore.kernel.org/r/20190727150738.54764-10-yuehaibing@huawei.com
Signed-off-by: Mark Brown <broonie@kernel.org>
---
 sound/soc/bcm/bcm2835-i2s.c | 4 +---
 1 file changed, 1 insertion(+), 3 deletions(-)

diff --git a/sound/soc/bcm/bcm2835-i2s.c b/sound/soc/bcm/bcm2835-i2s.c
index 5ef80f3d446a..e6a12e271b07 100644
--- a/sound/soc/bcm/bcm2835-i2s.c
+++ b/sound/soc/bcm/bcm2835-i2s.c
@@ -828,7 +828,6 @@ static int bcm2835_i2s_probe(struct platform_device *pdev)
 {
 	struct bcm2835_i2s_dev *dev;
 	int ret;
-	struct resource *mem;
 	void __iomem *base;
 	const __be32 *addr;
 	dma_addr_t dma_base;
@@ -848,8 +847,7 @@ static int bcm2835_i2s_probe(struct platform_device *pdev)
 	}
 
 	/* Request ioarea */
-	mem = platform_get_resource(pdev, IORESOURCE_MEM, 0);
-	base = devm_ioremap_resource(&pdev->dev, mem);
+	base = devm_platform_ioremap_resource(pdev, 0);
 	if (IS_ERR(base))
 		return PTR_ERR(base);
 
-- 
2.20.1

WARNING: multiple messages have this Message-ID (diff)
From: Mark Brown <broonie@kernel.org>
To: YueHaibing <yuehaibing@huawei.com>
Cc: mripard@kernel.org, alsa-devel@alsa-project.org,
	olivier.moysan@st.com, Xiubo.Lee@gmail.com,
	linux-kernel@vger.kernel.org, paul@crapouillou.net,
	jcmvbkbc@gmail.com, thierry.reding@gmail.com,
	shawnguo@kernel.org, festevam@gmail.com,
	linux-stm32@st-md-mailman.stormreply.com, jbrunet@baylibre.com,
	f.fainelli@gmail.com, khilman@baylibre.com, tiwai@suse.com,
	michal.simek@xilinx.com, jonathanh@nvidia.com,
	Hulk Robot <hulkci@huawei.com>,
	wens@csie.org, bcm-kernel-feedback-list@broadcom.com,
	linux-imx@nxp.com, s.hauer@pengutronix.de,
	matthias.bgg@gmail.com, linux-xtensa@linux-xtensa.org,
	alexandre.torgue@st.com, yamada.masahiro@socionext.com,
	rjui@broadcom.com, robert.jarzmik@free.fr,
	haojian.zhuang@gmail.com, nicoleotsuka@gmail.com,
	Mark Brown <broonie@kernel.org>,
	linux-mediatek@lists.infradead.org,
	linux-rpi-kernel@lists.infradead.org,
	linux-tegra@vger.kernel.org, linux-amlogic@lists.infradead.org,
	perex@perex.cz, linux-arm-kernel@lists.infradead.org,
	mcoquelin.stm32@gmail.com, baohua@kernel.org, timur@kernel.org,
	sbranden@broadcom.com, eric@anholt.net,
	gregkh@linuxfoundation.org, arnaud.pouliquen@st.com,
	lgirdwood@gmail.com, wahrenst@gmx.net, kernel@pengutronix.de,
	linuxppc-dev@lists.ozlabs.org, daniel@zonque.org
Subject: Applied "ASoC: bcm2835-i2s: use devm_platform_ioremap_resource() to simplify code" to the asoc tree
Date: Wed, 31 Jul 2019 12:29:48 +0100 (BST)	[thread overview]
Message-ID: <20190731112948.339E92742C99@ypsilon.sirena.org.uk> (raw)
In-Reply-To: <20190727150738.54764-10-yuehaibing@huawei.com>

The patch

   ASoC: bcm2835-i2s: use devm_platform_ioremap_resource() to simplify code

has been applied to the asoc tree at

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

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 d400b1b30cbff1c0962bbb3f895e839ccd120cb7 Mon Sep 17 00:00:00 2001
From: YueHaibing <yuehaibing@huawei.com>
Date: Sat, 27 Jul 2019 23:07:13 +0800
Subject: [PATCH] ASoC: bcm2835-i2s: use devm_platform_ioremap_resource() to
 simplify code

Use devm_platform_ioremap_resource() to simplify the code a bit.
This is detected by coccinelle.

Reported-by: Hulk Robot <hulkci@huawei.com>
Signed-off-by: YueHaibing <yuehaibing@huawei.com>
Link: https://lore.kernel.org/r/20190727150738.54764-10-yuehaibing@huawei.com
Signed-off-by: Mark Brown <broonie@kernel.org>
---
 sound/soc/bcm/bcm2835-i2s.c | 4 +---
 1 file changed, 1 insertion(+), 3 deletions(-)

diff --git a/sound/soc/bcm/bcm2835-i2s.c b/sound/soc/bcm/bcm2835-i2s.c
index 5ef80f3d446a..e6a12e271b07 100644
--- a/sound/soc/bcm/bcm2835-i2s.c
+++ b/sound/soc/bcm/bcm2835-i2s.c
@@ -828,7 +828,6 @@ static int bcm2835_i2s_probe(struct platform_device *pdev)
 {
 	struct bcm2835_i2s_dev *dev;
 	int ret;
-	struct resource *mem;
 	void __iomem *base;
 	const __be32 *addr;
 	dma_addr_t dma_base;
@@ -848,8 +847,7 @@ static int bcm2835_i2s_probe(struct platform_device *pdev)
 	}
 
 	/* Request ioarea */
-	mem = platform_get_resource(pdev, IORESOURCE_MEM, 0);
-	base = devm_ioremap_resource(&pdev->dev, mem);
+	base = devm_platform_ioremap_resource(pdev, 0);
 	if (IS_ERR(base))
 		return PTR_ERR(base);
 
-- 
2.20.1


WARNING: multiple messages have this Message-ID (diff)
From: Mark Brown <broonie@kernel.org>
To: YueHaibing <yuehaibing@huawei.com>
Cc: mripard@kernel.org, alsa-devel@alsa-project.org,
	olivier.moysan@st.com, Xiubo.Lee@gmail.com,
	linux-kernel@vger.kernel.org, paul@crapouillou.net,
	jcmvbkbc@gmail.com, thierry.reding@gmail.com,
	shawnguo@kernel.org, festevam@gmail.com,
	linux-stm32@st-md-mailman.stormreply.com, jbrunet@baylibre.com,
	f.fainelli@gmail.com, khilman@baylibre.com, tiwai@suse.com,
	michal.simek@xilinx.com, jonathanh@nvidia.com,
	Hulk Robot <hulkci@huawei.com>,
	wens@csie.org, bcm-kernel-feedback-list@broadcom.com,
	linux-imx@nxp.com, s.hauer@pengutronix.de,
	matthias.bgg@gmail.com, linux-xtensa@linux-xtensa.org,
	alexandre.torgue@st.com, yamada.masahiro@socionext.com,
	rjui@broadcom.com, robert.jarzmik@free.fr,
	haojian.zhuang@gmail.com, nicoleotsuka@gmail.com,
	Mark Brown <broonie@kernel.org>,
	linux-mediatek@lists.infradead.org,
	linux-rpi-kernel@lists.infradead.org,
	linux-tegra@vger.kernel.org, linux-amlogic@lists.infradead.org,
	perex@perex.cz, linux-arm-kernel@lists.infradead.org,
	mcoquelin.stm32@gmail.com, baohua@kernel.org, timur@kernel.org,
	sbranden@broadcom.com, eric@anholt.net,
	gregkh@linuxfoundation.org, arnaud.pouliquen@st.com,
	lgirdwood@gmail.com, wahrenst@gmx.net, kernel@pengutronix.de,
	linuxppc-dev@lists.ozlabs.org, daniel@zonque.org
Subject: Applied "ASoC: bcm2835-i2s: use devm_platform_ioremap_resource() to simplify code" to the asoc tree
Date: Wed, 31 Jul 2019 12:29:48 +0100 (BST)	[thread overview]
Message-ID: <20190731112948.339E92742C99@ypsilon.sirena.org.uk> (raw)
In-Reply-To: <20190727150738.54764-10-yuehaibing@huawei.com>

The patch

   ASoC: bcm2835-i2s: use devm_platform_ioremap_resource() to simplify code

has been applied to the asoc tree at

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

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 d400b1b30cbff1c0962bbb3f895e839ccd120cb7 Mon Sep 17 00:00:00 2001
From: YueHaibing <yuehaibing@huawei.com>
Date: Sat, 27 Jul 2019 23:07:13 +0800
Subject: [PATCH] ASoC: bcm2835-i2s: use devm_platform_ioremap_resource() to
 simplify code

Use devm_platform_ioremap_resource() to simplify the code a bit.
This is detected by coccinelle.

Reported-by: Hulk Robot <hulkci@huawei.com>
Signed-off-by: YueHaibing <yuehaibing@huawei.com>
Link: https://lore.kernel.org/r/20190727150738.54764-10-yuehaibing@huawei.com
Signed-off-by: Mark Brown <broonie@kernel.org>
---
 sound/soc/bcm/bcm2835-i2s.c | 4 +---
 1 file changed, 1 insertion(+), 3 deletions(-)

diff --git a/sound/soc/bcm/bcm2835-i2s.c b/sound/soc/bcm/bcm2835-i2s.c
index 5ef80f3d446a..e6a12e271b07 100644
--- a/sound/soc/bcm/bcm2835-i2s.c
+++ b/sound/soc/bcm/bcm2835-i2s.c
@@ -828,7 +828,6 @@ static int bcm2835_i2s_probe(struct platform_device *pdev)
 {
 	struct bcm2835_i2s_dev *dev;
 	int ret;
-	struct resource *mem;
 	void __iomem *base;
 	const __be32 *addr;
 	dma_addr_t dma_base;
@@ -848,8 +847,7 @@ static int bcm2835_i2s_probe(struct platform_device *pdev)
 	}
 
 	/* Request ioarea */
-	mem = platform_get_resource(pdev, IORESOURCE_MEM, 0);
-	base = devm_ioremap_resource(&pdev->dev, mem);
+	base = devm_platform_ioremap_resource(pdev, 0);
 	if (IS_ERR(base))
 		return PTR_ERR(base);
 
-- 
2.20.1


_______________________________________________
linux-amlogic mailing list
linux-amlogic@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-amlogic

  reply	other threads:[~2019-07-31 11:29 UTC|newest]

Thread overview: 345+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2019-07-27 15:07 [PATCH -next 00/34] ASoC: use devm_platform_ioremap_resource() to simplify code YueHaibing
2019-07-27 15:07 ` YueHaibing
2019-07-27 15:07 ` YueHaibing
2019-07-27 15:07 ` YueHaibing
2019-07-27 15:07 ` YueHaibing
2019-07-27 15:07 ` [PATCH -next 01/34] ASoC: tegra20_das: " YueHaibing
2019-07-27 15:07   ` YueHaibing
2019-07-27 15:07   ` YueHaibing
2019-07-27 15:07   ` YueHaibing
2019-07-27 15:07   ` YueHaibing
2019-07-31 11:29   ` Applied "ASoC: tegra20_das: use devm_platform_ioremap_resource() to simplify code" to the asoc tree Mark Brown
2019-07-31 11:29     ` Mark Brown
2019-07-31 11:29     ` Mark Brown
2019-07-31 11:29     ` Mark Brown
2019-07-31 11:29     ` Mark Brown
2019-07-27 15:07 ` [PATCH -next 02/34] ASoC: tegra: use devm_platform_ioremap_resource() to simplify code YueHaibing
2019-07-27 15:07   ` YueHaibing
2019-07-27 15:07   ` YueHaibing
2019-07-27 15:07   ` YueHaibing
2019-07-27 15:07   ` YueHaibing
2019-07-31 11:29   ` Applied "ASoC: tegra: use devm_platform_ioremap_resource() to simplify code" to the asoc tree Mark Brown
2019-07-31 11:29     ` Mark Brown
2019-07-31 11:29     ` Mark Brown
2019-07-31 11:29     ` Mark Brown
2019-07-31 11:29     ` Mark Brown
2019-07-27 15:07 ` [PATCH -next 03/34] ASoC: rockchip: use devm_platform_ioremap_resource() to simplify code YueHaibing
2019-07-27 15:07   ` YueHaibing
2019-07-27 15:07   ` YueHaibing
2019-07-27 15:07   ` YueHaibing
2019-07-27 15:07   ` YueHaibing
2019-07-31 11:29   ` Applied "ASoC: rockchip: use devm_platform_ioremap_resource() to simplify code" to the asoc tree Mark Brown
2019-07-31 11:29     ` Mark Brown
2019-07-31 11:29     ` Mark Brown
2019-07-31 11:29     ` Mark Brown
2019-07-31 11:29     ` Mark Brown
2019-07-27 15:07 ` [PATCH -next 04/34] ASoC: ep93xx-i2s: use devm_platform_ioremap_resource() to simplify code YueHaibing
2019-07-27 15:07   ` YueHaibing
2019-07-27 15:07   ` YueHaibing
2019-07-27 15:07   ` YueHaibing
2019-07-27 15:07   ` YueHaibing
     [not found]   ` <20190727150738.54764-5-yuehaibing-hv44wF8Li93QT0dZR+AlfA@public.gmane.org>
2019-07-31 11:29     ` Applied "ASoC: ep93xx-i2s: use devm_platform_ioremap_resource() to simplify code" to the asoc tree Mark Brown
2019-07-31 11:29       ` Mark Brown
2019-07-31 11:29       ` Mark Brown
2019-07-31 11:29       ` Mark Brown
2019-07-31 11:29       ` Mark Brown
2019-07-27 15:07 ` [PATCH -next 05/34] ASoC: mt8173: use devm_platform_ioremap_resource() to simplify code YueHaibing
2019-07-27 15:07   ` YueHaibing
2019-07-27 15:07   ` YueHaibing
2019-07-27 15:07   ` YueHaibing
2019-07-27 15:07   ` YueHaibing
2019-07-31 11:29   ` Applied "ASoC: mt8173: use devm_platform_ioremap_resource() to simplify code" to the asoc tree Mark Brown
2019-07-31 11:29     ` Mark Brown
2019-07-31 11:29     ` Mark Brown
2019-07-31 11:29     ` Mark Brown
2019-07-31 11:29     ` Mark Brown
2019-07-27 15:07 ` [PATCH -next 06/34] ASoC: mt6797: use devm_platform_ioremap_resource() to simplify code YueHaibing
2019-07-27 15:07   ` YueHaibing
2019-07-27 15:07   ` YueHaibing
2019-07-27 15:07   ` YueHaibing
2019-07-27 15:07   ` YueHaibing
2019-07-31 11:29   ` Applied "ASoC: mt6797: use devm_platform_ioremap_resource() to simplify code" to the asoc tree Mark Brown
2019-07-31 11:29     ` Mark Brown
2019-07-31 11:29     ` Mark Brown
2019-07-31 11:29     ` Mark Brown
2019-07-31 11:29     ` Mark Brown
2019-07-27 15:07 ` [PATCH -next 07/34] ASoC: imx-audmux: use devm_platform_ioremap_resource() to simplify code YueHaibing
2019-07-27 15:07   ` YueHaibing
2019-07-27 15:07   ` YueHaibing
2019-07-27 15:07   ` YueHaibing
2019-07-27 15:07   ` YueHaibing
2019-07-31 11:29   ` Applied "ASoC: imx-audmux: use devm_platform_ioremap_resource() to simplify code" to the asoc tree Mark Brown
2019-07-31 11:29     ` Mark Brown
2019-07-31 11:29     ` Mark Brown
2019-07-31 11:29     ` Mark Brown
2019-07-31 11:29     ` Mark Brown
2019-07-27 15:07 ` [PATCH -next 08/34] ASoC: fsl_audmix: use devm_platform_ioremap_resource() to simplify code YueHaibing
2019-07-27 15:07   ` YueHaibing
2019-07-27 15:07   ` YueHaibing
2019-07-27 15:07   ` YueHaibing
2019-07-27 15:07   ` YueHaibing
2019-07-31 11:29   ` Applied "ASoC: fsl_audmix: use devm_platform_ioremap_resource() to simplify code" to the asoc tree Mark Brown
2019-07-31 11:29     ` Mark Brown
2019-07-31 11:29     ` Mark Brown
2019-07-31 11:29     ` Mark Brown
2019-07-31 11:29     ` Mark Brown
2019-07-27 15:07 ` [PATCH -next 09/34] ASoC: bcm2835-i2s: use devm_platform_ioremap_resource() to simplify code YueHaibing
2019-07-27 15:07   ` YueHaibing
2019-07-27 15:07   ` YueHaibing
2019-07-27 15:07   ` YueHaibing
2019-07-27 15:07   ` YueHaibing
2019-07-31 11:29   ` Mark Brown [this message]
2019-07-31 11:29     ` Applied "ASoC: bcm2835-i2s: use devm_platform_ioremap_resource() to simplify code" to the asoc tree Mark Brown
2019-07-31 11:29     ` Mark Brown
2019-07-31 11:29     ` Mark Brown
2019-07-31 11:29     ` Mark Brown
2019-07-27 15:07 ` [PATCH -next 10/34] ASoC: sirf: use devm_platform_ioremap_resource() to simplify code YueHaibing
2019-07-27 15:07   ` YueHaibing
2019-07-27 15:07   ` YueHaibing
2019-07-27 15:07   ` YueHaibing
2019-07-27 15:07   ` YueHaibing
2019-07-31 11:29   ` Applied "ASoC: sirf: use devm_platform_ioremap_resource() to simplify code" to the asoc tree Mark Brown
2019-07-31 11:29     ` Mark Brown
2019-07-31 11:29     ` Mark Brown
2019-07-31 11:29     ` Mark Brown
2019-07-31 11:29     ` Mark Brown
2019-07-27 15:07 ` [PATCH -next 11/34] ASoC: mxs-saif: use devm_platform_ioremap_resource() to simplify code YueHaibing
2019-07-27 15:07   ` YueHaibing
2019-07-27 15:07   ` YueHaibing
2019-07-27 15:07   ` YueHaibing
2019-07-27 15:07   ` YueHaibing
2019-07-31 11:29   ` Applied "ASoC: mxs-saif: use devm_platform_ioremap_resource() to simplify code" to the asoc tree Mark Brown
2019-07-31 11:29     ` Mark Brown
2019-07-31 11:29     ` Mark Brown
2019-07-31 11:29     ` Mark Brown
2019-07-31 11:29     ` Mark Brown
2019-07-27 15:07 ` [PATCH -next 12/34] ASoC: spear: use devm_platform_ioremap_resource() to simplify code YueHaibing
2019-07-27 15:07   ` YueHaibing
2019-07-27 15:07   ` YueHaibing
2019-07-27 15:07   ` YueHaibing
2019-07-27 15:07   ` YueHaibing
2019-07-31 11:29   ` Applied "ASoC: spear: use devm_platform_ioremap_resource() to simplify code" to the asoc tree Mark Brown
2019-07-31 11:29     ` Mark Brown
2019-07-31 11:29     ` Mark Brown
2019-07-31 11:29     ` Mark Brown
2019-07-31 11:29     ` Mark Brown
2019-07-27 15:07 ` [PATCH -next 13/34] ASoC: kirkwood-i2s: use devm_platform_ioremap_resource() to simplify code YueHaibing
2019-07-27 15:07   ` YueHaibing
2019-07-27 15:07   ` YueHaibing
2019-07-27 15:07   ` YueHaibing
2019-07-27 15:07   ` YueHaibing
2019-07-31 11:29   ` Applied "ASoC: kirkwood-i2s: use devm_platform_ioremap_resource() to simplify code" to the asoc tree Mark Brown
2019-07-31 11:29     ` Mark Brown
2019-07-31 11:29     ` Mark Brown
2019-07-31 11:29     ` Mark Brown
2019-07-31 11:29     ` Mark Brown
2019-07-27 15:07 ` [PATCH -next 14/34] ASoC: xtfpga-i2s: use devm_platform_ioremap_resource() to simplify code YueHaibing
2019-07-27 15:07   ` YueHaibing
2019-07-27 15:07   ` YueHaibing
2019-07-27 15:07   ` YueHaibing
2019-07-27 15:07   ` YueHaibing
2019-07-31 11:29   ` Applied "ASoC: xtfpga-i2s: use devm_platform_ioremap_resource() to simplify code" to the asoc tree Mark Brown
2019-07-31 11:29     ` Mark Brown
2019-07-31 11:29     ` Mark Brown
2019-07-31 11:29     ` Mark Brown
2019-07-31 11:29     ` Mark Brown
2019-07-27 15:07 ` [PATCH -next 15/34] ASoC: stm32: sai: use devm_platform_ioremap_resource() to simplify code YueHaibing
2019-07-27 15:07   ` YueHaibing
2019-07-27 15:07   ` YueHaibing
2019-07-27 15:07   ` YueHaibing
2019-07-27 15:07   ` YueHaibing
2019-07-31 11:29   ` Applied "ASoC: stm32: sai: use devm_platform_ioremap_resource() to simplify code" to the asoc tree Mark Brown
2019-07-31 11:29     ` Mark Brown
2019-07-31 11:29     ` Mark Brown
2019-07-31 11:29     ` Mark Brown
2019-07-31 11:29     ` Mark Brown
2019-07-27 15:07 ` [PATCH -next 16/34] ASoC: codecs: msm8916-wcd: use devm_platform_ioremap_resource() to simplify code YueHaibing
2019-07-27 15:07   ` YueHaibing
2019-07-27 15:07   ` YueHaibing
2019-07-27 15:07   ` YueHaibing
2019-07-27 15:07   ` YueHaibing
2019-07-31 11:29   ` Applied "ASoC: codecs: msm8916-wcd: use devm_platform_ioremap_resource() to simplify code" to the asoc tree Mark Brown
2019-07-31 11:29     ` Mark Brown
2019-07-31 11:29     ` Mark Brown
2019-07-31 11:29     ` Mark Brown
2019-07-31 11:29     ` Mark Brown
2019-07-27 15:07 ` [PATCH -next 17/34] ASoC: codecs: jz4725b: use devm_platform_ioremap_resource() to simplify code YueHaibing
2019-07-27 15:07   ` YueHaibing
2019-07-27 15:07   ` YueHaibing
2019-07-27 15:07   ` YueHaibing
2019-07-27 15:07   ` YueHaibing
     [not found]   ` <20190727150738.54764-18-yuehaibing-hv44wF8Li93QT0dZR+AlfA@public.gmane.org>
2019-07-31 11:29     ` Applied "ASoC: codecs: jz4725b: use devm_platform_ioremap_resource() to simplify code" to the asoc tree Mark Brown
2019-07-31 11:29       ` Mark Brown
2019-07-31 11:29       ` Mark Brown
2019-07-31 11:29       ` Mark Brown
2019-07-31 11:29       ` Mark Brown
2019-07-27 15:07 ` [PATCH -next 18/34] ASoC: mmp-sspa: use devm_platform_ioremap_resource() to simplify code YueHaibing
2019-07-27 15:07   ` YueHaibing
2019-07-27 15:07   ` YueHaibing
2019-07-27 15:07   ` YueHaibing
2019-07-27 15:07   ` YueHaibing
2019-07-31 11:29   ` Applied "ASoC: mmp-sspa: use devm_platform_ioremap_resource() to simplify code" to the asoc tree Mark Brown
2019-07-31 11:29     ` Mark Brown
2019-07-31 11:29     ` Mark Brown
2019-07-31 11:29     ` Mark Brown
2019-07-31 11:29     ` Mark Brown
2019-07-27 15:07 ` [PATCH -next 19/34] ASoC: jz4740: use devm_platform_ioremap_resource() to simplify code YueHaibing
2019-07-27 15:07   ` YueHaibing
2019-07-27 15:07   ` YueHaibing
2019-07-27 15:07   ` YueHaibing
2019-07-27 15:07   ` YueHaibing
     [not found]   ` <20190727150738.54764-20-yuehaibing-hv44wF8Li93QT0dZR+AlfA@public.gmane.org>
2019-07-31 11:29     ` Applied "ASoC: jz4740: use devm_platform_ioremap_resource() to simplify code" to the asoc tree Mark Brown
2019-07-31 11:29       ` Mark Brown
2019-07-31 11:29       ` Mark Brown
2019-07-31 11:29       ` Mark Brown
2019-07-31 11:29       ` Mark Brown
2019-07-27 15:07 ` [PATCH -next 20/34] ASoC: inno_rk3036: use devm_platform_ioremap_resource() to simplify code YueHaibing
2019-07-27 15:07   ` YueHaibing
2019-07-27 15:07   ` YueHaibing
2019-07-27 15:07   ` YueHaibing
2019-07-27 15:07   ` YueHaibing
2019-07-31 11:29   ` Applied "ASoC: inno_rk3036: use devm_platform_ioremap_resource() to simplify code" to the asoc tree Mark Brown
2019-07-31 11:29     ` Mark Brown
2019-07-31 11:29     ` Mark Brown
2019-07-31 11:29     ` Mark Brown
2019-07-31 11:29     ` Mark Brown
2019-07-27 15:07 ` [PATCH -next 21/34] ASoC: uniphier: evea: use devm_platform_ioremap_resource() to simplify code YueHaibing
2019-07-27 15:07   ` YueHaibing
2019-07-27 15:07   ` YueHaibing
2019-07-27 15:07   ` YueHaibing
2019-07-27 15:07   ` YueHaibing
2019-07-31 11:29   ` Applied "ASoC: uniphier: evea: use devm_platform_ioremap_resource() to simplify code" to the asoc tree Mark Brown
2019-07-31 11:29     ` Mark Brown
2019-07-31 11:29     ` Mark Brown
2019-07-31 11:29     ` Mark Brown
2019-07-31 11:29     ` Mark Brown
2019-07-27 15:07 ` [PATCH -next 22/34] ASoC: uniphier: aio-dma: use devm_platform_ioremap_resource() to simplify code YueHaibing
2019-07-27 15:07   ` YueHaibing
2019-07-27 15:07   ` YueHaibing
2019-07-27 15:07   ` YueHaibing
2019-07-27 15:07   ` YueHaibing
     [not found]   ` <20190727150738.54764-23-yuehaibing-hv44wF8Li93QT0dZR+AlfA@public.gmane.org>
2019-07-31 11:29     ` Applied "ASoC: uniphier: aio-dma: use devm_platform_ioremap_resource() to simplify code" to the asoc tree Mark Brown
2019-07-31 11:29       ` Mark Brown
2019-07-31 11:29       ` Mark Brown
2019-07-31 11:29       ` Mark Brown
2019-07-31 11:29       ` Mark Brown
2019-07-27 15:07 ` [PATCH -next 23/34] ASoC: psc-ac97: use devm_platform_ioremap_resource() to simplify code YueHaibing
2019-07-27 15:07   ` YueHaibing
2019-07-27 15:07   ` YueHaibing
2019-07-27 15:07   ` YueHaibing
2019-07-27 15:07   ` YueHaibing
     [not found]   ` <20190727150738.54764-24-yuehaibing-hv44wF8Li93QT0dZR+AlfA@public.gmane.org>
2019-07-31 11:29     ` Applied "ASoC: psc-ac97: use devm_platform_ioremap_resource() to simplify code" to the asoc tree Mark Brown
2019-07-31 11:29       ` Mark Brown
2019-07-31 11:29       ` Mark Brown
2019-07-31 11:29       ` Mark Brown
2019-07-31 11:29       ` Mark Brown
2019-07-27 15:07 ` [PATCH -next 24/34] ASoC: au1x: psc-i2s: use devm_platform_ioremap_resource() to simplify code YueHaibing
2019-07-27 15:07   ` YueHaibing
2019-07-27 15:07   ` YueHaibing
2019-07-27 15:07   ` YueHaibing
2019-07-27 15:07   ` YueHaibing
2019-07-31 11:29   ` Applied "ASoC: au1x: psc-i2s: use devm_platform_ioremap_resource() to simplify code" to the asoc tree Mark Brown
2019-07-31 11:29     ` Mark Brown
2019-07-31 11:29     ` Mark Brown
2019-07-31 11:29     ` Mark Brown
2019-07-31 11:29     ` Mark Brown
2019-07-27 15:07 ` [PATCH -next 25/34] ASoC: meson: g12a-tohdmitx: use devm_platform_ioremap_resource() to simplify code YueHaibing
2019-07-27 15:07   ` YueHaibing
2019-07-27 15:07   ` YueHaibing
2019-07-27 15:07   ` YueHaibing
2019-07-27 15:07   ` YueHaibing
2019-07-31 11:29   ` Applied "ASoC: meson: g12a-tohdmitx: use devm_platform_ioremap_resource() to simplify code" to the asoc tree Mark Brown
2019-07-31 11:29     ` Mark Brown
2019-07-31 11:29     ` Mark Brown
2019-07-31 11:29     ` Mark Brown
2019-07-31 11:29     ` Mark Brown
2019-07-27 15:07 ` [PATCH -next 26/34] ASoC: meson: axg-tdm-formatter: use devm_platform_ioremap_resource() to simplify code YueHaibing
2019-07-27 15:07   ` YueHaibing
2019-07-27 15:07   ` YueHaibing
2019-07-27 15:07   ` YueHaibing
2019-07-27 15:07   ` YueHaibing
2019-07-31 11:29   ` Applied "ASoC: meson: axg-tdm-formatter: use devm_platform_ioremap_resource() to simplify code" to the asoc tree Mark Brown
2019-07-31 11:29     ` Mark Brown
2019-07-31 11:29     ` Mark Brown
2019-07-31 11:29     ` Mark Brown
2019-07-31 11:29     ` Mark Brown
2019-07-27 15:07 ` [PATCH -next 27/34] ASoC: meson: axg-pdm: use devm_platform_ioremap_resource() to simplify code YueHaibing
2019-07-27 15:07   ` YueHaibing
2019-07-27 15:07   ` YueHaibing
2019-07-27 15:07   ` YueHaibing
2019-07-27 15:07   ` YueHaibing
2019-07-31 11:29   ` Applied "ASoC: meson: axg-pdm: use devm_platform_ioremap_resource() to simplify code" to the asoc tree Mark Brown
2019-07-31 11:29     ` Mark Brown
2019-07-31 11:29     ` Mark Brown
2019-07-31 11:29     ` Mark Brown
2019-07-31 11:29     ` Mark Brown
2019-07-27 15:07 ` [PATCH -next 28/34] ASoC: meson: axg-spdifin: use devm_platform_ioremap_resource() to simplify code YueHaibing
2019-07-27 15:07   ` YueHaibing
2019-07-27 15:07   ` YueHaibing
2019-07-27 15:07   ` YueHaibing
2019-07-27 15:07   ` YueHaibing
2019-07-31 11:29   ` Applied "ASoC: meson: axg-spdifin: use devm_platform_ioremap_resource() to simplify code" to the asoc tree Mark Brown
2019-07-31 11:29     ` Mark Brown
2019-07-31 11:29     ` Mark Brown
2019-07-31 11:29     ` Mark Brown
2019-07-31 11:29     ` Mark Brown
2019-07-27 15:07 ` [PATCH -next 29/34] ASoC: meson: axg-spdifout: use devm_platform_ioremap_resource() to simplify code YueHaibing
2019-07-27 15:07   ` YueHaibing
2019-07-27 15:07   ` YueHaibing
2019-07-27 15:07   ` YueHaibing
2019-07-27 15:07   ` YueHaibing
     [not found]   ` <20190727150738.54764-30-yuehaibing-hv44wF8Li93QT0dZR+AlfA@public.gmane.org>
2019-07-31 11:29     ` Applied "ASoC: meson: axg-spdifout: use devm_platform_ioremap_resource() to simplify code" to the asoc tree Mark Brown
2019-07-31 11:29       ` Mark Brown
2019-07-31 11:29       ` Mark Brown
2019-07-31 11:29       ` Mark Brown
2019-07-31 11:29       ` Mark Brown
2019-07-27 15:07 ` [PATCH -next 30/34] ASoC: meson: axg-fifo: use devm_platform_ioremap_resource() to simplify code YueHaibing
2019-07-27 15:07   ` YueHaibing
2019-07-27 15:07   ` YueHaibing
2019-07-27 15:07   ` YueHaibing
2019-07-27 15:07   ` YueHaibing
2019-07-31 11:29   ` Applied "ASoC: meson: axg-fifo: use devm_platform_ioremap_resource() to simplify code" to the asoc tree Mark Brown
2019-07-31 11:29     ` Mark Brown
2019-07-31 11:29     ` Mark Brown
2019-07-31 11:29     ` Mark Brown
2019-07-31 11:29     ` Mark Brown
2019-07-27 15:07 ` [PATCH -next 31/34] ASoC: xlnx: use devm_platform_ioremap_resource() to simplify code YueHaibing
2019-07-27 15:07   ` YueHaibing
2019-07-27 15:07   ` YueHaibing
2019-07-27 15:07   ` YueHaibing
2019-07-27 15:07   ` YueHaibing
     [not found]   ` <20190727150738.54764-32-yuehaibing-hv44wF8Li93QT0dZR+AlfA@public.gmane.org>
2019-07-31 11:29     ` Applied "ASoC: xlnx: use devm_platform_ioremap_resource() to simplify code" to the asoc tree Mark Brown
2019-07-31 11:29       ` Mark Brown
2019-07-31 11:29       ` Mark Brown
2019-07-31 11:29       ` Mark Brown
2019-07-31 11:29       ` Mark Brown
2019-07-27 15:07 ` [PATCH -next 32/34] ASoC: sun8i-codec-analog: use devm_platform_ioremap_resource() to simplify code YueHaibing
2019-07-27 15:07   ` YueHaibing
2019-07-27 15:07   ` YueHaibing
2019-07-27 15:07   ` YueHaibing
2019-07-27 15:07   ` YueHaibing
     [not found]   ` <20190727150738.54764-33-yuehaibing-hv44wF8Li93QT0dZR+AlfA@public.gmane.org>
2019-07-31 11:29     ` Applied "ASoC: sun8i-codec-analog: use devm_platform_ioremap_resource() to simplify code" to the asoc tree Mark Brown
2019-07-31 11:29       ` Mark Brown
2019-07-31 11:29       ` Mark Brown
2019-07-31 11:29       ` Mark Brown
2019-07-31 11:29       ` Mark Brown
2019-07-27 15:07 ` [PATCH -next 33/34] ASoC: sunxi: sun50i-codec-analog: use devm_platform_ioremap_resource() to simplify code YueHaibing
2019-07-27 15:07   ` YueHaibing
2019-07-27 15:07   ` YueHaibing
2019-07-27 15:07   ` YueHaibing
2019-07-27 15:07   ` YueHaibing
     [not found]   ` <20190727150738.54764-34-yuehaibing-hv44wF8Li93QT0dZR+AlfA@public.gmane.org>
2019-07-31 11:29     ` Applied "ASoC: sunxi: sun50i-codec-analog: use devm_platform_ioremap_resource() to simplify code" to the asoc tree Mark Brown
2019-07-31 11:29       ` Mark Brown
2019-07-31 11:29       ` Mark Brown
2019-07-31 11:29       ` Mark Brown
2019-07-31 11:29       ` Mark Brown
2019-07-27 15:07 ` [PATCH -next 34/34] ASoC: sun8i-codec: use devm_platform_ioremap_resource() to simplify code YueHaibing
2019-07-27 15:07   ` YueHaibing
2019-07-27 15:07   ` YueHaibing
2019-07-27 15:07   ` YueHaibing
2019-07-27 15:07   ` YueHaibing
     [not found]   ` <20190727150738.54764-35-yuehaibing-hv44wF8Li93QT0dZR+AlfA@public.gmane.org>
2019-07-31 11:29     ` Applied "ASoC: sun8i-codec: use devm_platform_ioremap_resource() to simplify code" to the asoc tree Mark Brown
2019-07-31 11:29       ` Mark Brown
2019-07-31 11:29       ` Mark Brown
2019-07-31 11:29       ` Mark Brown
2019-07-31 11:29       ` Mark Brown

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=20190731112948.339E92742C99@ypsilon.sirena.org.uk \
    --to=broonie@kernel.org \
    --cc=alexandre.torgue@st.com \
    --cc=alsa-devel@alsa-project.org \
    --cc=arnaud.pouliquen@st.com \
    --cc=baohua@kernel.org \
    --cc=bcm-kernel-feedback-list@broadcom.com \
    --cc=daniel@zonque.org \
    --cc=eric@anholt.net \
    --cc=f.fainelli@gmail.com \
    --cc=festevam@gmail.com \
    --cc=gregkh@linuxfoundation.org \
    --cc=haojian.zhuang@gmail.com \
    --cc=hulkci@huawei.com \
    --cc=jbrunet@baylibre.com \
    --cc=jcmvbkbc@gmail.com \
    --cc=jonathanh@nvidia.com \
    --cc=kernel@pengutronix.de \
    --cc=khilman@baylibre.com \
    --cc=lgirdwood@gmail.com \
    --cc=linux-amlogic@lists.infradead.org \
    --cc=linux-arm-kernel@lists.infradead.org \
    --cc=linux-imx@nxp.com \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux-mediatek@lists.infradead.org \
    --cc=linux-rpi-kernel@lists.infradead.org \
    --cc=linux-stm32@st-md-mailman.stormreply.com \
    --cc=linux-tegra@vger.kernel.org \
    --cc=linux-xtensa@linux-xtensa.org \
    --cc=linuxppc-dev@lists.ozlabs.org \
    --cc=yuehaibing@huawei.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.