linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH -next v2 0/9] ASoC: fsl: Use devm_platform_get_and_ioremap_resource()
@ 2021-06-15  1:39 Yang Yingliang
  2021-06-15  1:39 ` [PATCH -next v2 1/9] ASoC: fsl_asrc: " Yang Yingliang
                   ` (9 more replies)
  0 siblings, 10 replies; 11+ messages in thread
From: Yang Yingliang @ 2021-06-15  1:39 UTC (permalink / raw)
  To: linux-kernel, linuxppc-dev, alsa-devel; +Cc: timur, broonie

patch #1 ~ #8:
  Use devm_platform_get_and_ioremap_resource()

patch #9
  check return value of platform_get_resource_byname()

v2:
  change error message in patch #9

Yang Yingliang (9):
  ASoC: fsl_asrc: Use devm_platform_get_and_ioremap_resource()
  ASoC: fsl_aud2htx: Use devm_platform_get_and_ioremap_resource()
  ASoC: fsl_easrc: Use devm_platform_get_and_ioremap_resource()
  ASoC: fsl_esai: Use devm_platform_get_and_ioremap_resource()
  ASoC: fsl_micfil: Use devm_platform_get_and_ioremap_resource()
  ASoC: fsl_sai: Use devm_platform_get_and_ioremap_resource()
  ASoC: fsl_spdif: Use devm_platform_get_and_ioremap_resource()
  ASoC: fsl_ssi: Use devm_platform_get_and_ioremap_resource()
  ASoC: fsl_xcvr: check return value after calling
    platform_get_resource_byname()

 sound/soc/fsl/fsl_asrc.c    | 3 +--
 sound/soc/fsl/fsl_aud2htx.c | 3 +--
 sound/soc/fsl/fsl_easrc.c   | 3 +--
 sound/soc/fsl/fsl_esai.c    | 3 +--
 sound/soc/fsl/fsl_micfil.c  | 3 +--
 sound/soc/fsl/fsl_sai.c     | 3 +--
 sound/soc/fsl/fsl_spdif.c   | 3 +--
 sound/soc/fsl/fsl_ssi.c     | 3 +--
 sound/soc/fsl/fsl_xcvr.c    | 4 ++++
 9 files changed, 12 insertions(+), 16 deletions(-)

-- 
2.25.1


^ permalink raw reply	[flat|nested] 11+ messages in thread

* [PATCH -next v2 1/9] ASoC: fsl_asrc: Use devm_platform_get_and_ioremap_resource()
  2021-06-15  1:39 [PATCH -next v2 0/9] ASoC: fsl: Use devm_platform_get_and_ioremap_resource() Yang Yingliang
@ 2021-06-15  1:39 ` Yang Yingliang
  2021-06-15  1:39 ` [PATCH -next v2 2/9] ASoC: fsl_aud2htx: " Yang Yingliang
                   ` (8 subsequent siblings)
  9 siblings, 0 replies; 11+ messages in thread
From: Yang Yingliang @ 2021-06-15  1:39 UTC (permalink / raw)
  To: linux-kernel, linuxppc-dev, alsa-devel; +Cc: timur, broonie

Use devm_platform_get_and_ioremap_resource() to simplify
code.

Signed-off-by: Yang Yingliang <yangyingliang@huawei.com>
---
 sound/soc/fsl/fsl_asrc.c | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/sound/soc/fsl/fsl_asrc.c b/sound/soc/fsl/fsl_asrc.c
index 0e1ad8efebd3..24b41881a68f 100644
--- a/sound/soc/fsl/fsl_asrc.c
+++ b/sound/soc/fsl/fsl_asrc.c
@@ -1035,8 +1035,7 @@ static int fsl_asrc_probe(struct platform_device *pdev)
 	asrc->private = asrc_priv;
 
 	/* Get the addresses and IRQ */
-	res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
-	regs = devm_ioremap_resource(&pdev->dev, res);
+	regs = devm_platform_get_and_ioremap_resource(pdev, 0, &res);
 	if (IS_ERR(regs))
 		return PTR_ERR(regs);
 
-- 
2.25.1


^ permalink raw reply related	[flat|nested] 11+ messages in thread

* [PATCH -next v2 2/9] ASoC: fsl_aud2htx: Use devm_platform_get_and_ioremap_resource()
  2021-06-15  1:39 [PATCH -next v2 0/9] ASoC: fsl: Use devm_platform_get_and_ioremap_resource() Yang Yingliang
  2021-06-15  1:39 ` [PATCH -next v2 1/9] ASoC: fsl_asrc: " Yang Yingliang
@ 2021-06-15  1:39 ` Yang Yingliang
  2021-06-15  1:39 ` [PATCH -next v2 3/9] ASoC: fsl_easrc: " Yang Yingliang
                   ` (7 subsequent siblings)
  9 siblings, 0 replies; 11+ messages in thread
From: Yang Yingliang @ 2021-06-15  1:39 UTC (permalink / raw)
  To: linux-kernel, linuxppc-dev, alsa-devel; +Cc: timur, broonie

Use devm_platform_get_and_ioremap_resource() to simplify
code.

Signed-off-by: Yang Yingliang <yangyingliang@huawei.com>
---
 sound/soc/fsl/fsl_aud2htx.c | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/sound/soc/fsl/fsl_aud2htx.c b/sound/soc/fsl/fsl_aud2htx.c
index a328697511f7..99ab7f0241cf 100644
--- a/sound/soc/fsl/fsl_aud2htx.c
+++ b/sound/soc/fsl/fsl_aud2htx.c
@@ -196,8 +196,7 @@ static int fsl_aud2htx_probe(struct platform_device *pdev)
 
 	aud2htx->pdev = pdev;
 
-	res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
-	regs = devm_ioremap_resource(&pdev->dev, res);
+	regs = devm_platform_get_and_ioremap_resource(pdev, 0, &res);
 	if (IS_ERR(regs))
 		return PTR_ERR(regs);
 
-- 
2.25.1


^ permalink raw reply related	[flat|nested] 11+ messages in thread

* [PATCH -next v2 3/9] ASoC: fsl_easrc: Use devm_platform_get_and_ioremap_resource()
  2021-06-15  1:39 [PATCH -next v2 0/9] ASoC: fsl: Use devm_platform_get_and_ioremap_resource() Yang Yingliang
  2021-06-15  1:39 ` [PATCH -next v2 1/9] ASoC: fsl_asrc: " Yang Yingliang
  2021-06-15  1:39 ` [PATCH -next v2 2/9] ASoC: fsl_aud2htx: " Yang Yingliang
@ 2021-06-15  1:39 ` Yang Yingliang
  2021-06-15  1:39 ` [PATCH -next v2 4/9] ASoC: fsl_esai: " Yang Yingliang
                   ` (6 subsequent siblings)
  9 siblings, 0 replies; 11+ messages in thread
From: Yang Yingliang @ 2021-06-15  1:39 UTC (permalink / raw)
  To: linux-kernel, linuxppc-dev, alsa-devel; +Cc: timur, broonie

Use devm_platform_get_and_ioremap_resource() to simplify
code.

Signed-off-by: Yang Yingliang <yangyingliang@huawei.com>
---
 sound/soc/fsl/fsl_easrc.c | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/sound/soc/fsl/fsl_easrc.c b/sound/soc/fsl/fsl_easrc.c
index b1765c7d3bcd..19c3c3b5939e 100644
--- a/sound/soc/fsl/fsl_easrc.c
+++ b/sound/soc/fsl/fsl_easrc.c
@@ -1887,8 +1887,7 @@ static int fsl_easrc_probe(struct platform_device *pdev)
 	easrc->private = easrc_priv;
 	np = dev->of_node;
 
-	res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
-	regs = devm_ioremap_resource(dev, res);
+	regs = devm_platform_get_and_ioremap_resource(pdev, 0, &res);
 	if (IS_ERR(regs))
 		return PTR_ERR(regs);
 
-- 
2.25.1


^ permalink raw reply related	[flat|nested] 11+ messages in thread

* [PATCH -next v2 4/9] ASoC: fsl_esai: Use devm_platform_get_and_ioremap_resource()
  2021-06-15  1:39 [PATCH -next v2 0/9] ASoC: fsl: Use devm_platform_get_and_ioremap_resource() Yang Yingliang
                   ` (2 preceding siblings ...)
  2021-06-15  1:39 ` [PATCH -next v2 3/9] ASoC: fsl_easrc: " Yang Yingliang
@ 2021-06-15  1:39 ` Yang Yingliang
  2021-06-15  1:39 ` [PATCH -next v2 5/9] ASoC: fsl_micfil: " Yang Yingliang
                   ` (5 subsequent siblings)
  9 siblings, 0 replies; 11+ messages in thread
From: Yang Yingliang @ 2021-06-15  1:39 UTC (permalink / raw)
  To: linux-kernel, linuxppc-dev, alsa-devel; +Cc: timur, broonie

Use devm_platform_get_and_ioremap_resource() to simplify
code.

Signed-off-by: Yang Yingliang <yangyingliang@huawei.com>
---
 sound/soc/fsl/fsl_esai.c | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/sound/soc/fsl/fsl_esai.c b/sound/soc/fsl/fsl_esai.c
index f356ae5925af..a961f837cd09 100644
--- a/sound/soc/fsl/fsl_esai.c
+++ b/sound/soc/fsl/fsl_esai.c
@@ -969,8 +969,7 @@ static int fsl_esai_probe(struct platform_device *pdev)
 	esai_priv->soc = of_device_get_match_data(&pdev->dev);
 
 	/* Get the addresses and IRQ */
-	res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
-	regs = devm_ioremap_resource(&pdev->dev, res);
+	regs = devm_platform_get_and_ioremap_resource(pdev, 0, &res);
 	if (IS_ERR(regs))
 		return PTR_ERR(regs);
 
-- 
2.25.1


^ permalink raw reply related	[flat|nested] 11+ messages in thread

* [PATCH -next v2 5/9] ASoC: fsl_micfil: Use devm_platform_get_and_ioremap_resource()
  2021-06-15  1:39 [PATCH -next v2 0/9] ASoC: fsl: Use devm_platform_get_and_ioremap_resource() Yang Yingliang
                   ` (3 preceding siblings ...)
  2021-06-15  1:39 ` [PATCH -next v2 4/9] ASoC: fsl_esai: " Yang Yingliang
@ 2021-06-15  1:39 ` Yang Yingliang
  2021-06-15  1:39 ` [PATCH -next v2 6/9] ASoC: fsl_sai: " Yang Yingliang
                   ` (4 subsequent siblings)
  9 siblings, 0 replies; 11+ messages in thread
From: Yang Yingliang @ 2021-06-15  1:39 UTC (permalink / raw)
  To: linux-kernel, linuxppc-dev, alsa-devel; +Cc: timur, broonie

Use devm_platform_get_and_ioremap_resource() to simplify
code.

Signed-off-by: Yang Yingliang <yangyingliang@huawei.com>
---
 sound/soc/fsl/fsl_micfil.c | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/sound/soc/fsl/fsl_micfil.c b/sound/soc/fsl/fsl_micfil.c
index 3cf789ed6cbe..8c0c75ce9490 100644
--- a/sound/soc/fsl/fsl_micfil.c
+++ b/sound/soc/fsl/fsl_micfil.c
@@ -669,8 +669,7 @@ static int fsl_micfil_probe(struct platform_device *pdev)
 	}
 
 	/* init regmap */
-	res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
-	regs = devm_ioremap_resource(&pdev->dev, res);
+	regs = devm_platform_get_and_ioremap_resource(pdev, 0, &res);
 	if (IS_ERR(regs))
 		return PTR_ERR(regs);
 
-- 
2.25.1


^ permalink raw reply related	[flat|nested] 11+ messages in thread

* [PATCH -next v2 6/9] ASoC: fsl_sai: Use devm_platform_get_and_ioremap_resource()
  2021-06-15  1:39 [PATCH -next v2 0/9] ASoC: fsl: Use devm_platform_get_and_ioremap_resource() Yang Yingliang
                   ` (4 preceding siblings ...)
  2021-06-15  1:39 ` [PATCH -next v2 5/9] ASoC: fsl_micfil: " Yang Yingliang
@ 2021-06-15  1:39 ` Yang Yingliang
  2021-06-15  1:39 ` [PATCH -next v2 7/9] ASoC: fsl_spdif: " Yang Yingliang
                   ` (3 subsequent siblings)
  9 siblings, 0 replies; 11+ messages in thread
From: Yang Yingliang @ 2021-06-15  1:39 UTC (permalink / raw)
  To: linux-kernel, linuxppc-dev, alsa-devel; +Cc: timur, broonie

Use devm_platform_get_and_ioremap_resource() to simplify
code.

Signed-off-by: Yang Yingliang <yangyingliang@huawei.com>
---
 sound/soc/fsl/fsl_sai.c | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/sound/soc/fsl/fsl_sai.c b/sound/soc/fsl/fsl_sai.c
index 407a45e48eee..223fcd15bfcc 100644
--- a/sound/soc/fsl/fsl_sai.c
+++ b/sound/soc/fsl/fsl_sai.c
@@ -1017,8 +1017,7 @@ static int fsl_sai_probe(struct platform_device *pdev)
 
 	sai->is_lsb_first = of_property_read_bool(np, "lsb-first");
 
-	res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
-	base = devm_ioremap_resource(&pdev->dev, res);
+	base = devm_platform_get_and_ioremap_resource(pdev, 0, &res);
 	if (IS_ERR(base))
 		return PTR_ERR(base);
 
-- 
2.25.1


^ permalink raw reply related	[flat|nested] 11+ messages in thread

* [PATCH -next v2 7/9] ASoC: fsl_spdif: Use devm_platform_get_and_ioremap_resource()
  2021-06-15  1:39 [PATCH -next v2 0/9] ASoC: fsl: Use devm_platform_get_and_ioremap_resource() Yang Yingliang
                   ` (5 preceding siblings ...)
  2021-06-15  1:39 ` [PATCH -next v2 6/9] ASoC: fsl_sai: " Yang Yingliang
@ 2021-06-15  1:39 ` Yang Yingliang
  2021-06-15  1:39 ` [PATCH -next v2 8/9] ASoC: fsl_ssi: " Yang Yingliang
                   ` (2 subsequent siblings)
  9 siblings, 0 replies; 11+ messages in thread
From: Yang Yingliang @ 2021-06-15  1:39 UTC (permalink / raw)
  To: linux-kernel, linuxppc-dev, alsa-devel; +Cc: timur, broonie

Use devm_platform_get_and_ioremap_resource() to simplify
code.

Signed-off-by: Yang Yingliang <yangyingliang@huawei.com>
---
 sound/soc/fsl/fsl_spdif.c | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/sound/soc/fsl/fsl_spdif.c b/sound/soc/fsl/fsl_spdif.c
index 2a76714eb8e6..d812a3ff5845 100644
--- a/sound/soc/fsl/fsl_spdif.c
+++ b/sound/soc/fsl/fsl_spdif.c
@@ -1355,8 +1355,7 @@ static int fsl_spdif_probe(struct platform_device *pdev)
 				spdif_priv->soc->tx_formats;
 
 	/* Get the addresses and IRQ */
-	res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
-	regs = devm_ioremap_resource(&pdev->dev, res);
+	regs = devm_platform_get_and_ioremap_resource(pdev, 0, &res);
 	if (IS_ERR(regs))
 		return PTR_ERR(regs);
 
-- 
2.25.1


^ permalink raw reply related	[flat|nested] 11+ messages in thread

* [PATCH -next v2 8/9] ASoC: fsl_ssi: Use devm_platform_get_and_ioremap_resource()
  2021-06-15  1:39 [PATCH -next v2 0/9] ASoC: fsl: Use devm_platform_get_and_ioremap_resource() Yang Yingliang
                   ` (6 preceding siblings ...)
  2021-06-15  1:39 ` [PATCH -next v2 7/9] ASoC: fsl_spdif: " Yang Yingliang
@ 2021-06-15  1:39 ` Yang Yingliang
  2021-06-15  1:39 ` [PATCH -next v2 9/9] ASoC: fsl_xcvr: check return value after calling platform_get_resource_byname() Yang Yingliang
  2021-06-21 18:45 ` [PATCH -next v2 0/9] ASoC: fsl: Use devm_platform_get_and_ioremap_resource() Mark Brown
  9 siblings, 0 replies; 11+ messages in thread
From: Yang Yingliang @ 2021-06-15  1:39 UTC (permalink / raw)
  To: linux-kernel, linuxppc-dev, alsa-devel; +Cc: timur, broonie

Use devm_platform_get_and_ioremap_resource() to simplify
code.

Signed-off-by: Yang Yingliang <yangyingliang@huawei.com>
---
 sound/soc/fsl/fsl_ssi.c | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/sound/soc/fsl/fsl_ssi.c b/sound/soc/fsl/fsl_ssi.c
index 2b57b60431bb..ecbc1c365d5b 100644
--- a/sound/soc/fsl/fsl_ssi.c
+++ b/sound/soc/fsl/fsl_ssi.c
@@ -1503,8 +1503,7 @@ static int fsl_ssi_probe(struct platform_device *pdev)
 	}
 	ssi->cpu_dai_drv.name = dev_name(dev);
 
-	res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
-	iomem = devm_ioremap_resource(dev, res);
+	iomem = devm_platform_get_and_ioremap_resource(pdev, 0, &res);
 	if (IS_ERR(iomem))
 		return PTR_ERR(iomem);
 	ssi->ssi_phys = res->start;
-- 
2.25.1


^ permalink raw reply related	[flat|nested] 11+ messages in thread

* [PATCH -next v2 9/9] ASoC: fsl_xcvr: check return value after calling platform_get_resource_byname()
  2021-06-15  1:39 [PATCH -next v2 0/9] ASoC: fsl: Use devm_platform_get_and_ioremap_resource() Yang Yingliang
                   ` (7 preceding siblings ...)
  2021-06-15  1:39 ` [PATCH -next v2 8/9] ASoC: fsl_ssi: " Yang Yingliang
@ 2021-06-15  1:39 ` Yang Yingliang
  2021-06-21 18:45 ` [PATCH -next v2 0/9] ASoC: fsl: Use devm_platform_get_and_ioremap_resource() Mark Brown
  9 siblings, 0 replies; 11+ messages in thread
From: Yang Yingliang @ 2021-06-15  1:39 UTC (permalink / raw)
  To: linux-kernel, linuxppc-dev, alsa-devel; +Cc: timur, broonie

It will cause null-ptr-deref if platform_get_resource_byname() returns NULL,
we need check the return value.

Signed-off-by: Yang Yingliang <yangyingliang@huawei.com>
---
 sound/soc/fsl/fsl_xcvr.c | 4 ++++
 1 file changed, 4 insertions(+)

diff --git a/sound/soc/fsl/fsl_xcvr.c b/sound/soc/fsl/fsl_xcvr.c
index df7c189d97dd..1330e190e1ff 100644
--- a/sound/soc/fsl/fsl_xcvr.c
+++ b/sound/soc/fsl/fsl_xcvr.c
@@ -1202,6 +1202,10 @@ static int fsl_xcvr_probe(struct platform_device *pdev)
 
 	rx_res = platform_get_resource_byname(pdev, IORESOURCE_MEM, "rxfifo");
 	tx_res = platform_get_resource_byname(pdev, IORESOURCE_MEM, "txfifo");
+	if (!rx_res || !tx_res) {
+		dev_err(dev, "could not find rxfifo or txfifo resource\n");
+		return -EINVAL;
+	}
 	xcvr->dma_prms_rx.chan_name = "rx";
 	xcvr->dma_prms_tx.chan_name = "tx";
 	xcvr->dma_prms_rx.addr = rx_res->start;
-- 
2.25.1


^ permalink raw reply related	[flat|nested] 11+ messages in thread

* Re: [PATCH -next v2 0/9] ASoC: fsl: Use devm_platform_get_and_ioremap_resource()
  2021-06-15  1:39 [PATCH -next v2 0/9] ASoC: fsl: Use devm_platform_get_and_ioremap_resource() Yang Yingliang
                   ` (8 preceding siblings ...)
  2021-06-15  1:39 ` [PATCH -next v2 9/9] ASoC: fsl_xcvr: check return value after calling platform_get_resource_byname() Yang Yingliang
@ 2021-06-21 18:45 ` Mark Brown
  9 siblings, 0 replies; 11+ messages in thread
From: Mark Brown @ 2021-06-21 18:45 UTC (permalink / raw)
  To: linuxppc-dev, Yang Yingliang, linux-kernel, alsa-devel; +Cc: Mark Brown, timur

On Tue, 15 Jun 2021 09:39:13 +0800, Yang Yingliang wrote:
> patch #1 ~ #8:
>   Use devm_platform_get_and_ioremap_resource()
> 
> patch #9
>   check return value of platform_get_resource_byname()
> 
> v2:
>   change error message in patch #9
> 
> [...]

Applied to

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

Thanks!

[1/9] ASoC: fsl_asrc: Use devm_platform_get_and_ioremap_resource()
      commit: c66d7621737fb07e660b3d6eef40636ef4e9103a
[2/9] ASoC: fsl_aud2htx: Use devm_platform_get_and_ioremap_resource()
      commit: 41e90cbbc50085487b4633f08c86dd71b0f18d7f
[3/9] ASoC: fsl_easrc: Use devm_platform_get_and_ioremap_resource()
      commit: 2cd16cf0d6bbb47adddc633c60ca405f672e64f4
[4/9] ASoC: fsl_esai: Use devm_platform_get_and_ioremap_resource()
      commit: f25bb69e6f04a3d45effbe1c571f5f3ac10253bb
[5/9] ASoC: fsl_micfil: Use devm_platform_get_and_ioremap_resource()
      commit: d9bf1e791ae61d606b0da0003ad19dbe7f252fe8
[6/9] ASoC: fsl_sai: Use devm_platform_get_and_ioremap_resource()
      commit: 664107f63888bdd8a5e1d38c8246b9508a1dc46a
[7/9] ASoC: fsl_spdif: Use devm_platform_get_and_ioremap_resource()
      commit: cbb7ea0aebf0c07061be615cab97ac9cab8a48a0
[8/9] ASoC: fsl_ssi: Use devm_platform_get_and_ioremap_resource()
      commit: 67798860e6d0114149562e6897cf07ba4bebc1d6
[9/9] ASoC: fsl_xcvr: check return value after calling platform_get_resource_byname()
      commit: a2f6ed4a44721d3a9fdf4da7e0743cb13866bf61

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

^ permalink raw reply	[flat|nested] 11+ messages in thread

end of thread, other threads:[~2021-06-21 18:47 UTC | newest]

Thread overview: 11+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-06-15  1:39 [PATCH -next v2 0/9] ASoC: fsl: Use devm_platform_get_and_ioremap_resource() Yang Yingliang
2021-06-15  1:39 ` [PATCH -next v2 1/9] ASoC: fsl_asrc: " Yang Yingliang
2021-06-15  1:39 ` [PATCH -next v2 2/9] ASoC: fsl_aud2htx: " Yang Yingliang
2021-06-15  1:39 ` [PATCH -next v2 3/9] ASoC: fsl_easrc: " Yang Yingliang
2021-06-15  1:39 ` [PATCH -next v2 4/9] ASoC: fsl_esai: " Yang Yingliang
2021-06-15  1:39 ` [PATCH -next v2 5/9] ASoC: fsl_micfil: " Yang Yingliang
2021-06-15  1:39 ` [PATCH -next v2 6/9] ASoC: fsl_sai: " Yang Yingliang
2021-06-15  1:39 ` [PATCH -next v2 7/9] ASoC: fsl_spdif: " Yang Yingliang
2021-06-15  1:39 ` [PATCH -next v2 8/9] ASoC: fsl_ssi: " Yang Yingliang
2021-06-15  1:39 ` [PATCH -next v2 9/9] ASoC: fsl_xcvr: check return value after calling platform_get_resource_byname() Yang Yingliang
2021-06-21 18:45 ` [PATCH -next v2 0/9] ASoC: fsl: Use devm_platform_get_and_ioremap_resource() Mark Brown

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).