linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH net-next v1] net: ethernet: dnet: convert to devm_platform_get_and_ioremap_resource
@ 2020-04-19 12:02 Dejin Zheng
  2020-04-20 19:18 ` David Miller
  0 siblings, 1 reply; 2+ messages in thread
From: Dejin Zheng @ 2020-04-19 12:02 UTC (permalink / raw)
  To: davem, f.fainelli, timur, kstewart, hkallweit1, tglx, netdev
  Cc: linux-kernel, Dejin Zheng

use devm_platform_get_and_ioremap_resource() to simplify code, which
contains platform_get_resource() and devm_ioremap_resource(), it also
get the resource for use by the following code.

Signed-off-by: Dejin Zheng <zhengdejin5@gmail.com>
---
 drivers/net/ethernet/dnet.c | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/drivers/net/ethernet/dnet.c b/drivers/net/ethernet/dnet.c
index 057a508dd6e2..db98274501a0 100644
--- a/drivers/net/ethernet/dnet.c
+++ b/drivers/net/ethernet/dnet.c
@@ -776,8 +776,7 @@ static int dnet_probe(struct platform_device *pdev)
 
 	spin_lock_init(&bp->lock);
 
-	res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
-	bp->regs = devm_ioremap_resource(&pdev->dev, res);
+	bp->regs = devm_platform_get_and_ioremap_resource(pdev, 0, &res);
 	if (IS_ERR(bp->regs)) {
 		err = PTR_ERR(bp->regs);
 		goto err_out_free_dev;
-- 
2.25.0


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

* Re: [PATCH net-next v1] net: ethernet: dnet: convert to devm_platform_get_and_ioremap_resource
  2020-04-19 12:02 [PATCH net-next v1] net: ethernet: dnet: convert to devm_platform_get_and_ioremap_resource Dejin Zheng
@ 2020-04-20 19:18 ` David Miller
  0 siblings, 0 replies; 2+ messages in thread
From: David Miller @ 2020-04-20 19:18 UTC (permalink / raw)
  To: zhengdejin5
  Cc: f.fainelli, timur, kstewart, hkallweit1, tglx, netdev, linux-kernel

From: Dejin Zheng <zhengdejin5@gmail.com>
Date: Sun, 19 Apr 2020 20:02:53 +0800

> use devm_platform_get_and_ioremap_resource() to simplify code, which
> contains platform_get_resource() and devm_ioremap_resource(), it also
> get the resource for use by the following code.
> 
> Signed-off-by: Dejin Zheng <zhengdejin5@gmail.com>

Applied, thanks.

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

end of thread, other threads:[~2020-04-20 19:18 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-04-19 12:02 [PATCH net-next v1] net: ethernet: dnet: convert to devm_platform_get_and_ioremap_resource Dejin Zheng
2020-04-20 19:18 ` David Miller

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).