All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] media: rc: meson-ir: Make use of the helper function devm_platform_ioremap_resource()
@ 2021-09-01  5:54 ` Cai Huoqing
  0 siblings, 0 replies; 6+ messages in thread
From: Cai Huoqing @ 2021-09-01  5:54 UTC (permalink / raw)
  To: caihuoqing
  Cc: Sean Young, Mauro Carvalho Chehab, Neil Armstrong, Kevin Hilman,
	Jerome Brunet, Martin Blumenstingl, linux-media,
	linux-arm-kernel, linux-amlogic, linux-kernel

Use the devm_platform_ioremap_resource() helper instead of
calling platform_get_resource() and devm_ioremap_resource()
separately

Signed-off-by: Cai Huoqing <caihuoqing@baidu.com>
---
 drivers/media/rc/meson-ir.c | 4 +---
 1 file changed, 1 insertion(+), 3 deletions(-)

diff --git a/drivers/media/rc/meson-ir.c b/drivers/media/rc/meson-ir.c
index dad55950dfc6..4b769111f78e 100644
--- a/drivers/media/rc/meson-ir.c
+++ b/drivers/media/rc/meson-ir.c
@@ -102,7 +102,6 @@ static int meson_ir_probe(struct platform_device *pdev)
 {
 	struct device *dev = &pdev->dev;
 	struct device_node *node = dev->of_node;
-	struct resource *res;
 	const char *map_name;
 	struct meson_ir *ir;
 	int irq, ret;
@@ -111,8 +110,7 @@ static int meson_ir_probe(struct platform_device *pdev)
 	if (!ir)
 		return -ENOMEM;
 
-	res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
-	ir->reg = devm_ioremap_resource(dev, res);
+	ir->reg = devm_platform_ioremap_resource(pdev, 0);
 	if (IS_ERR(ir->reg))
 		return PTR_ERR(ir->reg);
 
-- 
2.25.1


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

end of thread, other threads:[~2021-09-01  8:56 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-09-01  5:54 [PATCH] media: rc: meson-ir: Make use of the helper function devm_platform_ioremap_resource() Cai Huoqing
2021-09-01  5:54 ` Cai Huoqing
2021-09-01  5:54 ` Cai Huoqing
2021-09-01  8:14 ` Neil Armstrong
2021-09-01  8:14   ` Neil Armstrong
2021-09-01  8:14   ` Neil Armstrong

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.