All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] ASoC: mchp-spdifrx: convert to devm_platform_get_and_ioremap_resource
@ 2020-10-04  9:45 ` Codrin Ciubotariu
  0 siblings, 0 replies; 6+ messages in thread
From: Codrin Ciubotariu @ 2020-10-04  9:45 UTC (permalink / raw)
  To: alsa-devel, linux-arm-kernel, linux-kernel
  Cc: lgirdwood, broonie, perex, tiwai, nicolas.ferre,
	alexandre.belloni, ludovic.desroches, Codrin Ciubotariu

Use the helper function that wraps the calls to platform_get_resource()
and devm_ioremap_resource() together.

Signed-off-by: Codrin Ciubotariu <codrin.ciubotariu@microchip.com>
---
 sound/soc/atmel/mchp-spdifrx.c | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/sound/soc/atmel/mchp-spdifrx.c b/sound/soc/atmel/mchp-spdifrx.c
index 6776d89d56df..726e4951d9a5 100644
--- a/sound/soc/atmel/mchp-spdifrx.c
+++ b/sound/soc/atmel/mchp-spdifrx.c
@@ -873,8 +873,7 @@ static int mchp_spdifrx_probe(struct platform_device *pdev)
 		return -ENOMEM;
 
 	/* Map I/O registers. */
-	mem = platform_get_resource(pdev, IORESOURCE_MEM, 0);
-	base = devm_ioremap_resource(&pdev->dev, mem);
+	base = devm_platform_get_and_ioremap_resource(pdev, 0, &mem);
 	if (IS_ERR(base))
 		return PTR_ERR(base);
 
-- 
2.25.1


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

* [PATCH] ASoC: mchp-spdifrx: convert to devm_platform_get_and_ioremap_resource
@ 2020-10-04  9:45 ` Codrin Ciubotariu
  0 siblings, 0 replies; 6+ messages in thread
From: Codrin Ciubotariu @ 2020-10-04  9:45 UTC (permalink / raw)
  To: alsa-devel, linux-arm-kernel, linux-kernel
  Cc: alexandre.belloni, lgirdwood, nicolas.ferre, tiwai,
	ludovic.desroches, broonie, Codrin Ciubotariu

Use the helper function that wraps the calls to platform_get_resource()
and devm_ioremap_resource() together.

Signed-off-by: Codrin Ciubotariu <codrin.ciubotariu@microchip.com>
---
 sound/soc/atmel/mchp-spdifrx.c | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/sound/soc/atmel/mchp-spdifrx.c b/sound/soc/atmel/mchp-spdifrx.c
index 6776d89d56df..726e4951d9a5 100644
--- a/sound/soc/atmel/mchp-spdifrx.c
+++ b/sound/soc/atmel/mchp-spdifrx.c
@@ -873,8 +873,7 @@ static int mchp_spdifrx_probe(struct platform_device *pdev)
 		return -ENOMEM;
 
 	/* Map I/O registers. */
-	mem = platform_get_resource(pdev, IORESOURCE_MEM, 0);
-	base = devm_ioremap_resource(&pdev->dev, mem);
+	base = devm_platform_get_and_ioremap_resource(pdev, 0, &mem);
 	if (IS_ERR(base))
 		return PTR_ERR(base);
 
-- 
2.25.1


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

* [PATCH] ASoC: mchp-spdifrx: convert to devm_platform_get_and_ioremap_resource
@ 2020-10-04  9:45 ` Codrin Ciubotariu
  0 siblings, 0 replies; 6+ messages in thread
From: Codrin Ciubotariu @ 2020-10-04  9:45 UTC (permalink / raw)
  To: alsa-devel, linux-arm-kernel, linux-kernel
  Cc: alexandre.belloni, lgirdwood, tiwai, ludovic.desroches, broonie,
	Codrin Ciubotariu, perex

Use the helper function that wraps the calls to platform_get_resource()
and devm_ioremap_resource() together.

Signed-off-by: Codrin Ciubotariu <codrin.ciubotariu@microchip.com>
---
 sound/soc/atmel/mchp-spdifrx.c | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/sound/soc/atmel/mchp-spdifrx.c b/sound/soc/atmel/mchp-spdifrx.c
index 6776d89d56df..726e4951d9a5 100644
--- a/sound/soc/atmel/mchp-spdifrx.c
+++ b/sound/soc/atmel/mchp-spdifrx.c
@@ -873,8 +873,7 @@ static int mchp_spdifrx_probe(struct platform_device *pdev)
 		return -ENOMEM;
 
 	/* Map I/O registers. */
-	mem = platform_get_resource(pdev, IORESOURCE_MEM, 0);
-	base = devm_ioremap_resource(&pdev->dev, mem);
+	base = devm_platform_get_and_ioremap_resource(pdev, 0, &mem);
 	if (IS_ERR(base))
 		return PTR_ERR(base);
 
-- 
2.25.1


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

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

* Re: [PATCH] ASoC: mchp-spdifrx: convert to devm_platform_get_and_ioremap_resource
  2020-10-04  9:45 ` Codrin Ciubotariu
  (?)
@ 2020-10-05 17:53   ` Mark Brown
  -1 siblings, 0 replies; 6+ messages in thread
From: Mark Brown @ 2020-10-05 17:53 UTC (permalink / raw)
  To: linux-arm-kernel, alsa-devel, linux-kernel, Codrin Ciubotariu
  Cc: nicolas.ferre, tiwai, lgirdwood, alexandre.belloni, ludovic.desroches

On Sun, 4 Oct 2020 12:45:05 +0300, Codrin Ciubotariu wrote:
> Use the helper function that wraps the calls to platform_get_resource()
> and devm_ioremap_resource() together.

Applied to

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

Thanks!

[1/1] ASoC: mchp-spdifrx: convert to devm_platform_get_and_ioremap_resource
      commit: 8031b93efa8d393b7e38fa66b836ac157a2f354d

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] 6+ messages in thread

* Re: [PATCH] ASoC: mchp-spdifrx: convert to devm_platform_get_and_ioremap_resource
@ 2020-10-05 17:53   ` Mark Brown
  0 siblings, 0 replies; 6+ messages in thread
From: Mark Brown @ 2020-10-05 17:53 UTC (permalink / raw)
  To: linux-arm-kernel, alsa-devel, linux-kernel, Codrin Ciubotariu
  Cc: lgirdwood, alexandre.belloni, ludovic.desroches, nicolas.ferre, tiwai

On Sun, 4 Oct 2020 12:45:05 +0300, Codrin Ciubotariu wrote:
> Use the helper function that wraps the calls to platform_get_resource()
> and devm_ioremap_resource() together.

Applied to

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

Thanks!

[1/1] ASoC: mchp-spdifrx: convert to devm_platform_get_and_ioremap_resource
      commit: 8031b93efa8d393b7e38fa66b836ac157a2f354d

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] 6+ messages in thread

* Re: [PATCH] ASoC: mchp-spdifrx: convert to devm_platform_get_and_ioremap_resource
@ 2020-10-05 17:53   ` Mark Brown
  0 siblings, 0 replies; 6+ messages in thread
From: Mark Brown @ 2020-10-05 17:53 UTC (permalink / raw)
  To: linux-arm-kernel, alsa-devel, linux-kernel, Codrin Ciubotariu
  Cc: lgirdwood, alexandre.belloni, ludovic.desroches, tiwai

On Sun, 4 Oct 2020 12:45:05 +0300, Codrin Ciubotariu wrote:
> Use the helper function that wraps the calls to platform_get_resource()
> and devm_ioremap_resource() together.

Applied to

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

Thanks!

[1/1] ASoC: mchp-spdifrx: convert to devm_platform_get_and_ioremap_resource
      commit: 8031b93efa8d393b7e38fa66b836ac157a2f354d

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

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

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

end of thread, other threads:[~2020-10-05 17:56 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-10-04  9:45 [PATCH] ASoC: mchp-spdifrx: convert to devm_platform_get_and_ioremap_resource Codrin Ciubotariu
2020-10-04  9:45 ` Codrin Ciubotariu
2020-10-04  9:45 ` Codrin Ciubotariu
2020-10-05 17:53 ` Mark Brown
2020-10-05 17:53   ` Mark Brown
2020-10-05 17:53   ` Mark Brown

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.