linux-fpga.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH -next 1/6] fpga: manager: Use devm_platform_ioremap_resource()
@ 2023-04-06  2:34 Yang Li
  2023-04-06  2:34 ` [PATCH -next 2/6] " Yang Li
                   ` (4 more replies)
  0 siblings, 5 replies; 6+ messages in thread
From: Yang Li @ 2023-04-06  2:34 UTC (permalink / raw)
  To: mdf; +Cc: hao.wu, yilun.xu, trix, linux-fpga, linux-kernel, Yang Li

Convert platform_get_resource(), devm_ioremap_resource() to a single
call to devm_platform_ioremap_resource(), as this is exactly what this
function does.

Signed-off-by: Yang Li <yang.lee@linux.alibaba.com>
---
 drivers/fpga/ts73xx-fpga.c | 4 +---
 1 file changed, 1 insertion(+), 3 deletions(-)

diff --git a/drivers/fpga/ts73xx-fpga.c b/drivers/fpga/ts73xx-fpga.c
index 8e6e9c840d9d..4e1d2a4d3df4 100644
--- a/drivers/fpga/ts73xx-fpga.c
+++ b/drivers/fpga/ts73xx-fpga.c
@@ -103,7 +103,6 @@ static int ts73xx_fpga_probe(struct platform_device *pdev)
 	struct device *kdev = &pdev->dev;
 	struct ts73xx_fpga_priv *priv;
 	struct fpga_manager *mgr;
-	struct resource *res;
 
 	priv = devm_kzalloc(kdev, sizeof(*priv), GFP_KERNEL);
 	if (!priv)
@@ -111,8 +110,7 @@ static int ts73xx_fpga_probe(struct platform_device *pdev)
 
 	priv->dev = kdev;
 
-	res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
-	priv->io_base = devm_ioremap_resource(kdev, res);
+	priv->io_base = devm_platform_ioremap_resource(pdev, 0);
 	if (IS_ERR(priv->io_base))
 		return PTR_ERR(priv->io_base);
 
-- 
2.20.1.7.g153144c


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

* [PATCH -next 2/6] fpga: manager: Use devm_platform_ioremap_resource()
  2023-04-06  2:34 [PATCH -next 1/6] fpga: manager: Use devm_platform_ioremap_resource() Yang Li
@ 2023-04-06  2:34 ` Yang Li
  2023-04-06  2:34 ` [PATCH -next 3/6] " Yang Li
                   ` (3 subsequent siblings)
  4 siblings, 0 replies; 6+ messages in thread
From: Yang Li @ 2023-04-06  2:34 UTC (permalink / raw)
  To: mdf; +Cc: hao.wu, yilun.xu, trix, linux-fpga, linux-kernel, Yang Li

Convert platform_get_resource(), devm_ioremap_resource() to a single
call to devm_platform_ioremap_resource(), as this is exactly what this
function does.

Signed-off-by: Yang Li <yang.lee@linux.alibaba.com>
---
 drivers/fpga/socfpga.c | 7 ++-----
 1 file changed, 2 insertions(+), 5 deletions(-)

diff --git a/drivers/fpga/socfpga.c b/drivers/fpga/socfpga.c
index 7e0741f99696..723ea0ad3f09 100644
--- a/drivers/fpga/socfpga.c
+++ b/drivers/fpga/socfpga.c
@@ -545,20 +545,17 @@ static int socfpga_fpga_probe(struct platform_device *pdev)
 	struct device *dev = &pdev->dev;
 	struct socfpga_fpga_priv *priv;
 	struct fpga_manager *mgr;
-	struct resource *res;
 	int ret;
 
 	priv = devm_kzalloc(dev, sizeof(*priv), GFP_KERNEL);
 	if (!priv)
 		return -ENOMEM;
 
-	res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
-	priv->fpga_base_addr = devm_ioremap_resource(dev, res);
+	priv->fpga_base_addr = devm_platform_ioremap_resource(pdev, 0);
 	if (IS_ERR(priv->fpga_base_addr))
 		return PTR_ERR(priv->fpga_base_addr);
 
-	res = platform_get_resource(pdev, IORESOURCE_MEM, 1);
-	priv->fpga_data_addr = devm_ioremap_resource(dev, res);
+	priv->fpga_data_addr = devm_platform_ioremap_resource(pdev, 1);
 	if (IS_ERR(priv->fpga_data_addr))
 		return PTR_ERR(priv->fpga_data_addr);
 
-- 
2.20.1.7.g153144c


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

* [PATCH -next 3/6] fpga: manager: Use devm_platform_ioremap_resource()
  2023-04-06  2:34 [PATCH -next 1/6] fpga: manager: Use devm_platform_ioremap_resource() Yang Li
  2023-04-06  2:34 ` [PATCH -next 2/6] " Yang Li
@ 2023-04-06  2:34 ` Yang Li
  2023-04-06  2:34 ` [PATCH -next 4/6] fpga: dfl: " Yang Li
                   ` (2 subsequent siblings)
  4 siblings, 0 replies; 6+ messages in thread
From: Yang Li @ 2023-04-06  2:34 UTC (permalink / raw)
  To: mdf; +Cc: hao.wu, yilun.xu, trix, linux-fpga, linux-kernel, Yang Li

Convert platform_get_resource(), devm_ioremap_resource() to a single
call to devm_platform_ioremap_resource(), as this is exactly what this
function does.

Signed-off-by: Yang Li <yang.lee@linux.alibaba.com>
---
 drivers/fpga/socfpga-a10.c | 7 ++-----
 1 file changed, 2 insertions(+), 5 deletions(-)

diff --git a/drivers/fpga/socfpga-a10.c b/drivers/fpga/socfpga-a10.c
index ac8e89b8a5cc..cc4861e345c9 100644
--- a/drivers/fpga/socfpga-a10.c
+++ b/drivers/fpga/socfpga-a10.c
@@ -471,7 +471,6 @@ static int socfpga_a10_fpga_probe(struct platform_device *pdev)
 	struct a10_fpga_priv *priv;
 	void __iomem *reg_base;
 	struct fpga_manager *mgr;
-	struct resource *res;
 	int ret;
 
 	priv = devm_kzalloc(dev, sizeof(*priv), GFP_KERNEL);
@@ -479,14 +478,12 @@ static int socfpga_a10_fpga_probe(struct platform_device *pdev)
 		return -ENOMEM;
 
 	/* First mmio base is for register access */
-	res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
-	reg_base = devm_ioremap_resource(dev, res);
+	reg_base = devm_platform_ioremap_resource(pdev, 0);
 	if (IS_ERR(reg_base))
 		return PTR_ERR(reg_base);
 
 	/* Second mmio base is for writing FPGA image data */
-	res = platform_get_resource(pdev, IORESOURCE_MEM, 1);
-	priv->fpga_data_addr = devm_ioremap_resource(dev, res);
+	priv->fpga_data_addr = devm_platform_ioremap_resource(pdev, 1);
 	if (IS_ERR(priv->fpga_data_addr))
 		return PTR_ERR(priv->fpga_data_addr);
 
-- 
2.20.1.7.g153144c


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

* [PATCH -next 4/6] fpga: dfl: Use devm_platform_ioremap_resource()
  2023-04-06  2:34 [PATCH -next 1/6] fpga: manager: Use devm_platform_ioremap_resource() Yang Li
  2023-04-06  2:34 ` [PATCH -next 2/6] " Yang Li
  2023-04-06  2:34 ` [PATCH -next 3/6] " Yang Li
@ 2023-04-06  2:34 ` Yang Li
  2023-04-06  2:34 ` [PATCH -next 5/6] fpga: manager: " Yang Li
  2023-04-06  2:34 ` [PATCH -next 6/6] fpga: bridge: " Yang Li
  4 siblings, 0 replies; 6+ messages in thread
From: Yang Li @ 2023-04-06  2:34 UTC (permalink / raw)
  To: mdf; +Cc: hao.wu, yilun.xu, trix, linux-fpga, linux-kernel, Yang Li

Convert platform_get_resource(), devm_ioremap_resource() to a single
call to devm_platform_ioremap_resource(), as this is exactly what this
function does.

Signed-off-by: Yang Li <yang.lee@linux.alibaba.com>
---
 drivers/fpga/dfl-fme-mgr.c | 4 +---
 1 file changed, 1 insertion(+), 3 deletions(-)

diff --git a/drivers/fpga/dfl-fme-mgr.c b/drivers/fpga/dfl-fme-mgr.c
index af0785783b52..ab228d8837a0 100644
--- a/drivers/fpga/dfl-fme-mgr.c
+++ b/drivers/fpga/dfl-fme-mgr.c
@@ -280,7 +280,6 @@ static int fme_mgr_probe(struct platform_device *pdev)
 	struct device *dev = &pdev->dev;
 	struct fme_mgr_priv *priv;
 	struct fpga_manager *mgr;
-	struct resource *res;
 
 	priv = devm_kzalloc(dev, sizeof(*priv), GFP_KERNEL);
 	if (!priv)
@@ -290,8 +289,7 @@ static int fme_mgr_probe(struct platform_device *pdev)
 		priv->ioaddr = pdata->ioaddr;
 
 	if (!priv->ioaddr) {
-		res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
-		priv->ioaddr = devm_ioremap_resource(dev, res);
+		priv->ioaddr = devm_platform_ioremap_resource(pdev, 0);
 		if (IS_ERR(priv->ioaddr))
 			return PTR_ERR(priv->ioaddr);
 	}
-- 
2.20.1.7.g153144c


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

* [PATCH -next 5/6] fpga: manager: Use devm_platform_ioremap_resource()
  2023-04-06  2:34 [PATCH -next 1/6] fpga: manager: Use devm_platform_ioremap_resource() Yang Li
                   ` (2 preceding siblings ...)
  2023-04-06  2:34 ` [PATCH -next 4/6] fpga: dfl: " Yang Li
@ 2023-04-06  2:34 ` Yang Li
  2023-04-06  2:34 ` [PATCH -next 6/6] fpga: bridge: " Yang Li
  4 siblings, 0 replies; 6+ messages in thread
From: Yang Li @ 2023-04-06  2:34 UTC (permalink / raw)
  To: mdf; +Cc: hao.wu, yilun.xu, trix, linux-fpga, linux-kernel, Yang Li

Convert platform_get_resource(), devm_ioremap_resource() to a single
call to devm_platform_ioremap_resource(), as this is exactly what this
function does.

Signed-off-by: Yang Li <yang.lee@linux.alibaba.com>
---
 drivers/fpga/altera-pr-ip-core-plat.c | 5 +----
 1 file changed, 1 insertion(+), 4 deletions(-)

diff --git a/drivers/fpga/altera-pr-ip-core-plat.c b/drivers/fpga/altera-pr-ip-core-plat.c
index b008a6b8d2d3..a4b26286963b 100644
--- a/drivers/fpga/altera-pr-ip-core-plat.c
+++ b/drivers/fpga/altera-pr-ip-core-plat.c
@@ -15,12 +15,9 @@ static int alt_pr_platform_probe(struct platform_device *pdev)
 {
 	struct device *dev = &pdev->dev;
 	void __iomem *reg_base;
-	struct resource *res;
 
 	/* First mmio base is for register access */
-	res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
-
-	reg_base = devm_ioremap_resource(dev, res);
+	reg_base = devm_platform_ioremap_resource(pdev, 0);
 
 	if (IS_ERR(reg_base))
 		return PTR_ERR(reg_base);
-- 
2.20.1.7.g153144c


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

* [PATCH -next 6/6] fpga: bridge: Use devm_platform_ioremap_resource()
  2023-04-06  2:34 [PATCH -next 1/6] fpga: manager: Use devm_platform_ioremap_resource() Yang Li
                   ` (3 preceding siblings ...)
  2023-04-06  2:34 ` [PATCH -next 5/6] fpga: manager: " Yang Li
@ 2023-04-06  2:34 ` Yang Li
  4 siblings, 0 replies; 6+ messages in thread
From: Yang Li @ 2023-04-06  2:34 UTC (permalink / raw)
  To: mdf; +Cc: hao.wu, yilun.xu, trix, linux-fpga, linux-kernel, Yang Li

Convert platform_get_resource(), devm_ioremap_resource() to a single
call to devm_platform_ioremap_resource(), as this is exactly what this
function does.

Signed-off-by: Yang Li <yang.lee@linux.alibaba.com>
---
 drivers/fpga/altera-freeze-bridge.c | 4 +---
 1 file changed, 1 insertion(+), 3 deletions(-)

diff --git a/drivers/fpga/altera-freeze-bridge.c b/drivers/fpga/altera-freeze-bridge.c
index 445f4b011167..bb6b02ec2d21 100644
--- a/drivers/fpga/altera-freeze-bridge.c
+++ b/drivers/fpga/altera-freeze-bridge.c
@@ -213,14 +213,12 @@ static int altera_freeze_br_probe(struct platform_device *pdev)
 	void __iomem *base_addr;
 	struct altera_freeze_br_data *priv;
 	struct fpga_bridge *br;
-	struct resource *res;
 	u32 status, revision;
 
 	if (!np)
 		return -ENODEV;
 
-	res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
-	base_addr = devm_ioremap_resource(dev, res);
+	base_addr = devm_platform_ioremap_resource(pdev, 0);
 	if (IS_ERR(base_addr))
 		return PTR_ERR(base_addr);
 
-- 
2.20.1.7.g153144c


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

end of thread, other threads:[~2023-04-06  2:36 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2023-04-06  2:34 [PATCH -next 1/6] fpga: manager: Use devm_platform_ioremap_resource() Yang Li
2023-04-06  2:34 ` [PATCH -next 2/6] " Yang Li
2023-04-06  2:34 ` [PATCH -next 3/6] " Yang Li
2023-04-06  2:34 ` [PATCH -next 4/6] fpga: dfl: " Yang Li
2023-04-06  2:34 ` [PATCH -next 5/6] fpga: manager: " Yang Li
2023-04-06  2:34 ` [PATCH -next 6/6] fpga: bridge: " Yang Li

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